tiny-vue/examples/sites/demos/pc/app/radio/display-only.vue

33 lines
746 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<span>单选组实现只读</span>
<tiny-radio-group display-only v-model="value1" :options="options"></tiny-radio-group>
<br />
<br />
<span>每个单选项实现只读</span>
<tiny-radio display-only v-model="value" label="1">选项一</tiny-radio>
<tiny-radio display-only v-model="value" label="2" text="选项二"></tiny-radio>
</div>
</template>
<script>
import { Radio, RadioGroup } from '@opentiny/vue'
export default {
components: {
TinyRadio: Radio,
TinyRadioGroup: RadioGroup
},
data() {
return {
value: '1',
value1: 'B',
options: [
{ label: 'A', text: '很好' },
{ label: 'B', text: '一般' }
]
}
}
}
</script>