forked from opentiny/tiny-vue
29 lines
608 B
Vue
29 lines
608 B
Vue
<template>
|
|
<tiny-radio-group v-model="value" vertical @change="change">
|
|
<tiny-radio label="1"> 备选项1 </tiny-radio>
|
|
<tiny-radio label="2"> 备选项2 </tiny-radio>
|
|
<tiny-radio label="3"> 备选项3 </tiny-radio>
|
|
</tiny-radio-group>
|
|
</template>
|
|
|
|
<script>
|
|
import { Radio, RadioGroup, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyRadio: Radio,
|
|
TinyRadioGroup: RadioGroup
|
|
},
|
|
data() {
|
|
return {
|
|
value: '1'
|
|
}
|
|
},
|
|
methods: {
|
|
change(val) {
|
|
Modal.message({ message: `当前变化的值:${val}`, status: 'info' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|