下拉类型多选组件Vue-Treeselect(键名转换)

支持的功能项

		1.支持嵌套选项的单选和多选
		2.模糊匹配
		3.异步搜索
		4.延迟加载(仅在需要时加载深度选项的数据)
		5.键盘支持(使用Arrow Up & Arrow Down键导航,使用键选择选项Enter等)
		6.丰富的选项和高度可定制的
		7.支持 多种浏览器

它支持在vue项目中通过npm安装vue-treeselect:npm install --save @riophae/vue-treeselect
在一般项目中也可以使用,前提是保证在vue作为依赖项,

<html>
  <head>
    <!-- include Vue 2.x -->
    <script src="https://cdn.jsdelivr.net/npm/vue@^2"></script>
    <!-- include vue-treeselect & its styles. you can change the version tag to better suit your needs. -->
    <script src="https://cdn.jsdelivr.net/npm/@riophae/vue-treeselect@^0.4.0/dist/vue-treeselect.umd.min.js"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@riophae/vue-treeselect@^0.4.0/dist/vue-treeselect.min.css">
  </head>
  <body>
    <div id="app">
      <treeselect v-model="value" :multiple="true" :options="options" />
    </div>
  </body>
  <script>
    // register the component
    Vue.component('treeselect', VueTreeselect.Treeselect)

    new Vue({
      el: '#app',
      data: {
        // define the default value
        value: null,
        // define options

        options: [ {
          id: 'a',
          label: 'a',
          children: [ {
            id: 'aa',
            label: 'aa',
          }, {
            id: 'ab',
            label: 'ab',
          } ],
        }, {
          id: 'b',
          label: 'b',
        }, {
          id: 'c',
          label: 'c',
        } ],
      },
    })
  </script>
</html>

(上述代码段来自原开发文档)

页面截图:
在这里插入图片描述
这里主要记录一下它的自定义键名

<treeselect
  :options="options"
  :value="value"
  :normalizer="normalizer" /*改变这个参数的对应简明即可*/
  />
export default {
  data: () => ({
    value: null,
    options: [ {
      key: 'a',
      name: 'a',
      subOptions: [ {
        key: 'aa',
        name: 'aa',
      } ],
    } ],
    normalizer(node) { //方法
      return {
        id: node.key, // 键名转换,方法默认是label和children进行树状渲染
        label: node.name,
        children: node.subOptions,
      }
    },
  }),
}
自定义选项标签

其他需要可以仔细阅读开发文档,快速进入

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值