码迷,mamicode.com
首页 > 其他好文 > 详细

iview中table翻页时候添加loading状态

时间:2019-01-11 15:58:55      阅读:1072      评论:0      收藏:0      [点我收藏+]

标签:The   load()   数据加载   翻页   加载   ios   eth   pre   res   

<Table :columns="columns"
    :no-data-text="loadingText ? loadingText : ‘暂无数据‘"
    :data="data">
</Table>
data() {
    return {
        loadingText: ‘‘
    }
},
methods: {
    load() {
        this.loadingText = ‘数据加载中...‘;
        axios.get(‘/some/url‘).then(resp => this.loadingText = ‘‘) 
    }
}

 

iview中table翻页时候添加loading状态

标签:The   load()   数据加载   翻页   加载   ios   eth   pre   res   

原文地址:https://www.cnblogs.com/JeneryYang/p/10255251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!