安裝
cnpm install vue-droplist --save
組件中導(dǎo)入
import DropList from 'vue-droplist' // 顯示下拉列表 showDropList() { // 配置信息 const configData = { position: { // 設(shè)置顯示位置 top: '', right: '', bottom: '', left: '' }, width: '40%', // 設(shè)置寬度 list: [ // 設(shè)置下拉列表數(shù)據(jù)和對應(yīng)的點擊事件 {text: '修改資料', action: this.updateUserInfo}, {text: '更換主題', action: this.updateTheme}, {text: '退出賬號', action: this.signOut} ... ], isShow: true //設(shè)置顯示,默認false } DropList(configData) //執(zhí)行配置信息 }, updateUserInfo() { //do something }, updateTheme() { //do something }, signOut() { //do something }
相信看了本文案例你已經(jīng)掌握了方法,更多精彩請關(guān)注Gxl網(wǎng)其它相關(guān)文章!
推薦閱讀:
assets與static使用案例剖析
JS使用createElement()動態(tài)添加HTML
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com