更新记录
1.0.1(2020-05-20) 下载此版本
修复新增后拖拽新item滑块定位失败 加入触感反馈
1.0.0(2020-05-19) 下载此版本
初次提交
平台兼容性
引入
import AppList from "@/components/AppList.vue"
components: {
AppList,
},
使用
<!-- template -->
<AppList :listData="appListData" @listChange="listChange"></AppList>
<!-- data -->
appListData: [{
appId: 1,
appIcon: "cuIcon-evaluate",
appName: "QQ",
appLink: ""
},
{
appId: 2,
appIcon: "cuIcon-pay",
appName: "支付宝",
appLink: ""
},
{
appId: 3,
appIcon: "cuIcon-send",
appName: "微信",
appLink: ""
},
{
appId: 4,
appIcon: "cuIcon-form",
appName: "钉钉",
appLink: ""
},
{
appId: 5,
appIcon: "cuIcon-pic",
appName: "咸鱼",
appLink: ""
},
{
appId: 6,
appIcon: "cuIcon-cart",
appName: "淘宝",
appLink: ""
},
],
methods: {
listChange(option){
console.log("listChange",option)
}
}