ant-desing-table 全局刷新 及 当前分页刷新 第二页修改返回第二页刷新 a-table 与 s-table 都是一样的 使用方法this.$refs.table...

a-table 与 s-table 都是一样的 使用方法

this.$refs.table.refresh(true)  //  新增 从第一页开始刷新
this.$refs.table.loadData() // 当前在第二页,刷新第二页

监听从哪个页面返回

watch: {
    '$route' (to, from) {
      if (from.name === 'GoodsCreate') {
        this.$refs.table.refresh(true)
      } else if (from.name === 'GoodsEdit') {
        this.$refs.table.loadData()
      }
    }
  },

你可能感兴趣的:(vue3,vue,vue纪要,前端,前端框架,ant-design)