完整信息链接
单选框(O男 O女)
<template>
<el-radio v-model="radio" label="1">男</el-radio>
<el-radio v-model="radio" label="2">女</el-radio>
</template>
<script>
export default {
data () {
return {
radio: '1'
};
}
}
</script>
单选(选项A 选项B)
<template>
<el-select v-model="value" placeholder="请选择">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</template>
<script>
export default {
data() {
return {
options: [{
value: '1',
label: '早餐'
}, {
value: '2',
label: '午餐'
}, {
value: '3',
label: '晚餐'
}],
value: ''
}
}
}
</script>
评论 (0)