You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
478 B
35 lines
478 B
<docs>
|
|
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 不可用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
checkbox 不可用
|
|
|
|
## en-US
|
|
|
|
Disabled checkbox
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-checkbox v-model:checked="checked1" disabled />
|
|
<br />
|
|
<a-checkbox v-model:checked="checked2" disabled />
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from 'vue';
|
|
export default defineComponent({
|
|
setup() {
|
|
return {
|
|
checked1: ref(false),
|
|
checked2: ref(false),
|
|
};
|
|
},
|
|
});
|
|
</script>
|