mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00
12 lines
268 B
Vue
12 lines
268 B
Vue
<template>
|
|
<el-checkbox v-model="checked1" disabled>Disabled</el-checkbox>
|
|
<el-checkbox v-model="checked2">Not disabled</el-checkbox>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const checked1 = ref(false)
|
|
const checked2 = ref(true)
|
|
</script>
|