New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ele-tree-select

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ele-tree-select

一个基于elementUI的下拉树选择插件

latest
npmnpm
Version
0.1.10
Version published
Maintainers
1
Created
Source

github

https://github.com/walkalonelxy/ele-tree-select

说明

  • 此插件是基于elementUI开发的下拉树组件
  • 目前不支持单选,暂只支持多选

安装

npm i ele-tree-select -S

使用

在 main.js 中引入

import EleTreeSelect from 'ele-tree-select'
import 'ele-tree-select/lib/ele-tree-select.css'
Vue.use(EleTreeSelect)

属性

属性说明类型是否必传默认值可选值
props配置选项object见下面配置选项--
code作为组件的唯一标志返回string----
treeData作为组件的数据传入,如果开启懒加载,需要将异步获取的数据组装成树型数据传入array----
clearable是否可清空选项booleantruefalse
accordion是否每次只打开一个同级树节点展开booleanfalsetrue
multipleChoice是否多选,暂时只支持多选booleantruetrue
lazy是否使用懒加载booleanfalsetrue
checkStrictly多选时是否父子节点不互相关联booleantruefalse
filterable是否可搜索booleanfalsetrue
placeholder设置搜索框的placeholderstring查找关键字--

props配置选项(同elementUI的tree组件的配置选项)

参数说明类型默认值
value--stringid
label--stringtitle
children--stringchildren
isLeaf--stringleaf

事件

事件名称说明回调参数
lazyLoad懒加载时触发的事件node:点击的节点对象,resolve:在异步请求结束后需要resolve请求的结果,code:对应上面的code属性
getCheckedData获取选中项的valuevalue:选中节点的value,code:对应上面的code属性
getCheckedItem获取选中节点的对象data:选中节点的对象,code:对应上面的code属性

方法

方法名称说明参数
clear清空所有选中的数据--
removeTag移除指定的选中项value:props里面value映射的字段

FAQs

Package last updated on 29 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts