forked from opentiny/tiny-vue
25 lines
517 B
Vue
25 lines
517 B
Vue
<template>
|
|
<tiny-slider-button-group v-model="radio2" :options="options"></tiny-slider-button-group>
|
|
</template>
|
|
|
|
<script>
|
|
import { SliderButtonGroup, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySliderButtonGroup: SliderButtonGroup
|
|
},
|
|
data() {
|
|
return {
|
|
radio2: '很好',
|
|
options: [{ label: '很好', events: { click: this.handleClick } }, { label: '一般' }]
|
|
}
|
|
},
|
|
methods: {
|
|
handleClick() {
|
|
Modal.message({ message: 'click' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|