鍍金池/ 問答/HTML/ vue的element-ui 級聯(lián)選擇器 tree中的options prop

vue的element-ui 級聯(lián)選擇器 tree中的options props怎么配置

我想改官網(wǎng)例子中數(shù)據(jù)的鍵值,label,value,children等值

回答
編輯回答
吢涼

仔細(xì)看了文檔:通過props屬性修改

<el-cascader
  :options="options2"
  @active-item-change="handleItemChange"
  :props="props"
></el-cascader>


props: {
          value: 'label',
          children: 'cities'
        }
2018年7月8日 01:03