<template><c-selectv-model="value"><c-select-optionv-for="item in options":key="item.value":label="item.label":value="item.value"></c-select-option></c-select></template><script>exportdefault{data(){return{options:[{value:'选项1',label:'黄金糕',},{value:'选项2',label:'双皮奶',},],value:'',}},}</script>