1.2.2 • Published 4 years ago

vue-select-hyy v1.2.2

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

vue-select

Vue 移动端 select 组件,适合长 label 级联选择,参考淘宝地址选择

Source

https://github.com/hyy126/vue-select-hyy

Demo

http://122.51.194.65:8089/vueselect

Usage

npm install vue-select-hyy

import vueSelect from "vue-select-hyy"
Vue.use(vueSelect)

caution

  1. vue version must > 2.6

  2. because we use v-slot feature

Attributes

参数说明类型可选值默认值必填
listTitle列表小标题String-请选择分类
wrapperHeight容器高度String1%-100%70%
showDecline显示隐藏Booleantrue/false-
selectList列表数据集合Array--
dataList选择值Array-除placeholder外有默认值
dataProps键名对应值Array-{label:"label",value:"value",children:"children"}

Events

事件名称说明回调参数
endSelect没有下一层级选择完成的回调该次选择值的数组集合

Custom List Style

<!-- custom style -->
<template #list={curList,activeValue}>
    <ul>
        <li
            v-for="item in curList"
            :class="{'active':activeValue===item.value}"
            :key="item.name"
            @click="changeValue(item)"
        >{{item.surplus}} - {{item.value}} - {{item.label}}</li>
    </ul>
</template>

Describe

  1. 关于使用的优化及动态数据请求后续更新

  2. 更多使用请参考DEMO

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago