Radio 单选
Props
Events
预设值
## 自定义输入框
``` vux height=200 components=Radio,Group
<template>
<group>
<radio :options="options" fill-mode fill-label="Other" fill-placeholder="填写其他的哦"></radio>
</group>
</template>
<script>
export default {
data () {
return {
options:['China','Japan']
}
}
}
</script>数据双向绑定
Last updated