tiny-vue/examples/sites/demos/mobile-first/app/radio/read-only.vue

32 lines
806 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>
<div class="mb-2">单选组实现只读</div>
<tiny-radio-group display-only v-model="value1" :options="options"></tiny-radio-group>
<br /><br /><br />
<div class="mb-2">每个单选项实现只读</div>
<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: '很好', events: { click: this.handleClick } },
{ label: 'B', text: '一般' }
]
}
}
}
</script>