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.
ant-design-vue/components/radio/demo/disabled.vue

38 lines
721 B

<docs>
---
order: 1
title:
zh-CN: 不可用
en-US: disabled
---
## zh-CN
Radio 不可用
## en-US
Radio unavailable.
</docs>
<template>
<div>
<a-radio v-model:checked="checked1" :disabled="disabled">Disabled</a-radio>
<a-radio v-model:checked="checked2" :disabled="disabled">Disabled</a-radio>
<br />
<div style="margin-top: 16px">
<a-button type="primary" @click="toggleDisabled">Toggle disabled</a-button>
</div>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const disabled = ref<boolean>(true);
const checked1 = ref<boolean>(true);
const checked2 = ref<boolean>(false);
const toggleDisabled = () => {
disabled.value = !disabled.value;
};
</script>