tiny-vue/examples/sites/demos/mobile/app/radio/disabled.vue

31 lines
473 B
Vue

<template>
<div class="demo">
<p>禁用</p>
<tiny-radio v-model="value" label="1" disabled>我同意</tiny-radio>
<tiny-radio v-model="value" label="2" disabled>我拒绝</tiny-radio>
</div>
</template>
<script>
import { Radio } from '@opentiny/vue'
export default {
components: {
TinyRadio: Radio
},
data() {
return {
value: '1'
}
}
}
</script>
<style>
.demo {
height: 100%;
overflow-y: scroll;
padding: 20px;
}
</style>