<template> <Row gutter=".5rem 0"> <Col> <Radio v-for="city in cities" :key="city" :label="city" v-model="checkedCity" >{{ city }}</Radio> <Radio label="杭州" v-model="checkedCity" disabled>杭州</Radio> </Col> </Row> <Row gutter=".5rem 0"> <Col> 选中的城市:{{ checkedCity }} </Col> </Row> </template> <script> export default { data() { return { cities: ['北京', '上海', '广州', '深圳'], checkedCity: '北京', }; } } </script>
← Checkbox 复选框 Toggle 开关 →