vue-lazy-cascader
v0.2.1
Published
A cascader component based on element-ui, which retains the basic functionality of el-cascader while adding remote search and scroll loading of nodes.
Downloads
4
Maintainers
Readme
Vue Lazy Cascader
Vue Lazy Cascader 是一个vue2级联选择器组件,基于 element-ui 的级联组件。它保留了 el-cascader 的完整功能,并增加了滚动加载和远程搜索功能。
Install
您可以通过 npm、yarn 或 pnpm 来安装 Vue Lazy Cascader。
npm
npm install vue-lazy-cascader --save
yarn
yarn add vue-lazy-cascader
pnpm
pnpm install vue-lazy-cascader --save
Changelog
Usage
description
Added Prop
| 属性名 | 类型 | 描述 | |----------------|-----------|--------------------| | remote | boolean | 是否开启远程搜索 | | props.remoteMethod | (query: string, resolve: (any[]) => void) | 远程搜索方法,回调接收搜索的数据作为参数,会将未加载的数据插入到级联的数据store中 | | props.total | string | 指定选项子节点总数为选项对象的某个属性值,默认'total' |
Added Events
| event name | callback parameter | description | |------------------|------------------------------|--------------------------------| | menu-scroll-bottom | (parentNode: Node, resolve: (any[]) => void) | 当菜单滚动到底部时触发,回调接收滚动加载的新数据作为参数,会将传入的未加载的数据插入到级联的数据store中。 | | suggestion-scroll-bottom | (query: string, resolve: (any[]) => void) | 当搜索列表滚动到底部时触发,回调接收搜索的数据作为参数,会将未加载的数据插入到级联的数据store中。 |
Tip
- 该组件打包了所需的element-ui组件,但是并没有引入element-ui样式,所以在使用前必须引入'element-ui/lib/theme-chalk/index.css'
- 级联value必须唯一,否则会出错。例如相同value的子节点无法插入到不同的父节点下(待修复)
- 是否是最后一页要判断准确,不能单纯用已加载和接口返回相加数量 == total进行判断,因为接口返回的可能已经加载过了。详情请看代码(搜索时候会把搜索结果append到节点store中)
- pop的层级如果不对,可以将appendToBody设置为false