ant-design-vue/antdv-demo/docs/input-number/demo/disabled.md

37 lines
595 B
Markdown

<cn>
#### ä¸å¯į”¨
į‚šå‡ģ按钎切æĸå¯į”¨įŠļ态。
</cn>
<us>
#### Disabled
Click the button to toggle between available and disabled states.
</us>
```vue
<template>
<div>
<a-input-number :min="1" :max="10" :disabled="disabled" :default-value="3" />
<div style="marginTop:20px">
<a-button type="primary" @click="toggle">
Toggle disabled
</a-button>
</div>
</div>
</template>
<script>
export default {
data() {
return {
disabled: true,
};
},
methods: {
toggle() {
this.disabled = !this.disabled;
},
},
};
</script>
```