最近在弄作品,做了个下拉列表。心想各位小哥哥、小姐姐可能会用到相同的需求,就把下拉列表封装一下,希望能对各位小哥哥,小姐姐有帮助
github地址:
nofollow" href="https://github.com/ClmPisces/vue-droplist">https://github.com/ClmPisces/vue-droplist
喜欢的请反手来个star,有issue的欢迎提出
安装
组件中导入
// 显示下拉列表
showDropList() {
// 配置信息
const configData = {
position: { // 设置显示位置
top: '',right: '',bottom: '',left: ''
},width: '40%',// 设置宽度
list: [ // 设置下拉列表数据和对应的点击事件
{text: '修改资料',action: this.updateUserInfo},{text: '更换主题',action: this.updateTheme},{text: '退出账号',action: this.signOut}
...
],isShow: true //设置显示,默认false
}
DropList(configData) //执行配置信息
},updateUserInfo() {
//do something
},updateTheme() {
//do something
},signOut() {
//do something
}
showDropList() {
// 配置信息
const configData = {
position: { // 设置显示位置
top: '',right: '',bottom: '',left: ''
},width: '40%',// 设置宽度
list: [ // 设置下拉列表数据和对应的点击事件
{text: '修改资料',action: this.updateUserInfo},{text: '更换主题',action: this.updateTheme},{text: '退出账号',action: this.signOut}
...
],isShow: true //设置显示,默认false
}
DropList(configData) //执行配置信息
},updateUserInfo() {
//do something
},updateTheme() {
//do something
},signOut() {
//do something
}
总结
以上所述是小编给大家介绍的vue下拉列表功能实例代码。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持。
原文链接:https://www.f2er.com/vue/32864.html