mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
16 lines
251 B
Vue
16 lines
251 B
Vue
<template>
|
|
<div>
|
|
<a-checkbox :defaultChecked="false" disabled />
|
|
<br />
|
|
<a-checkbox defaultChecked disabled />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { Checkbox } from 'antd'
|
|
export default {
|
|
components: {
|
|
Checkbox,
|
|
},
|
|
}
|
|
</script>
|