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/input-number/demo/disabled.vue

46 lines
786 B

<docs>
---
order: 0
title:
zh-CN: 不可用
en-US: Disabled
---
## zh-CN
点击按钮切换可用状态
## en-US
Click the button to toggle between available and disabled states.
</docs>
<template>
<div>
<a-input-number v-model:value="value" :min="1" :max="10" :disabled="disabled" />
<div style="margin-top: 20px">
<a-button type="primary" @click="toggle">Toggle disabled</a-button>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref<number>(3);
const disabled = ref<boolean>(true);
const toggle = () => {
disabled.value = !disabled.value;
};
return {
value,
disabled,
toggle,
};
},
});
</script>