外部 js 调用vue里面的方法或者变量
vue 方法mounted () {window.testFun = this.testFun;// 方法赋值给window},methods: {// vue内部方法testFun () {},}外部js调用<script>function test() {testFun();// 直接通过window方法去调用methods中对应方法}</script>...
·
此方法简单粗暴,需要注意调用时机的问题
vue 方法
mounted () {
window.testFun = this.testFun; // 方法赋值给window
},
methods: {
// vue内部方法
testFun () {
},
}
外部js调用
<script>
function test() {
testFun(); // 直接通过window方法去调用methods中对应方法
}
</script>
微信群大佬都在等着你
微信扫描二维码加入微信群,交流学习,及时获取代码最新动态。
更多推荐
已为社区贡献1条内容
所有评论(0)