需求中
ElementUI 的 Cascader 級聯選擇器個人覺得很好用,但是對 :options="options" 里的數據格式是有特定要求的:input 框顯示的值是 options 里的 label 值。如果 options 的鍵值對不是 value label ,就需要 props 來配置。
代碼:
<el-cascader v-model="form.dialogTag" :props="TagProps" :options="selectDialogTag" class="input-wraper" collapse-tags clearable ></el-cascader> TagProps: { multiple: true, value: 'key', label: 'value', children: 'childs', },