美文网首页
js中调用实例化Vue中的方法

js中调用实例化Vue中的方法

作者: 深吸一口气 | 来源:发表于2021-06-28 09:07 被阅读0次
    mounted(){
        // 将Vue方法传到全局对象window中
        window.send = this.sendMsg;
    },
    methods: {
        sendMsg(){
            console.log("send...")
        }
    }
    

    相关文章

      网友评论

          本文标题:js中调用实例化Vue中的方法

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