_this2.$xxxis not a function

报错:_this2.$xxxxxis not a function

 handleDelete: (api) => {
    
    
      this.$message("这是一条消息提示");
    },

修改为:

handleDelete: function () {
    
    
      this.$message("这是一条消息提示");
    },

猜你喜欢

转载自blog.csdn.net/qq_44977477/article/details/114242837
今日推荐