vue实现左滑删除的功能

利用Mint UI 实现类似于qq的左滑删除的功能

vue实现左滑删除的功能_第1张图片

1.首先在组件内引入模块,我是局部引入

import { CellSwipe } from 'mint-ui'
Vue.component(CellSwipe.name, CellSwipe

2.以下是循环列表里的内容

  • {{item.calenderName}}

    {{item.calenderContent}}

:right里具体参数可以查看官方文档

3.删除时调用该方法,删除成功再次重新请求接口

deleteSection (id) {
    //请求删除数据的接口   
},

 

你可能感兴趣的:(VUE)