checkbox多选
... 2022-9-15 Less than 1 minute
# checkbox多选
值:[
0,
1
]
值:[]
Copy
<el-row :span="24">
<el-col :span="6">
值:{{form}}<br/>
<avue-checkbox v-model="form" placeholder="请选择内容" :dic="dic"></avue-checkbox>
</el-col>
<el-col :span="24"></el-col>
<el-col :span="6">
值:{{form1}}<br/>
<avue-checkbox all v-model="form1" placeholder="请选择内容" :dic="dic"></avue-checkbox>
</el-col>
</el-row>
<script>
export default {
data() {
return {
form:[0,1],
form1:[],
dic:[{
label:'选项1',
value:0
},{
label:'选项2',
value:1
}]
}
}
}
</script>
This app can be installed on your PC or mobile device. This will allow this web app to look and behave like any other installed app. You will find it in your app lists and be able to pin it to your home screen, start menus or task bars. This installed web app will also be able to safely interact with other apps and your operating system.