iview/examples/routers/radio.vue

18 lines
319 B
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<template>
<div>
2017-03-27 10:48:18 +08:00
<Radio-group v-model="sex">
<Radio :label="0"></Radio>
<Radio :label="1"></Radio>
</Radio-group>
2016-09-09 14:29:19 +08:00
</div>
</template>
<script>
export default {
data () {
return {
2017-03-27 10:48:18 +08:00
sex: 0
2016-09-09 14:29:19 +08:00
}
}
}
2016-11-09 18:23:17 +08:00
</script>