美文网首页
Vue + Element 中 this.$message 失效

Vue + Element 中 this.$message 失效

作者: 无尘粉笔 | 来源:发表于2020-01-31 16:31 被阅读0次

    Vue的Element确实给开发者提供了很大的便捷,比如消息提示中的:this.message 函数就非常好用。但是在某些情况下是失效的 主要是因为this错误 解决办法 onSubmit: function () { var vm = this;.post('upload',
    {
    title: this.formInline.title,
    },
    function (res) {
    // 这里就可以用了
    vm.$message({
    message: '成功!',
    type: 'success'
    });
    });
    },
    欢迎指导!

    相关文章

      网友评论

          本文标题:Vue + Element 中 this.$message 失效

          本文链接:https://www.haomeiwen.com/subject/qtwgthtx.html