废话不多说,直接上代码:
- vue文件中
mounted(){
//在mounted中把函数放在全局
window.showZldy=this.showZldy;
},
methods:{
showZldy(value){
console.log('函数调用')
},
}
- 外部js文件
window.showZldy() //直接调用
废话不多说,直接上代码:
mounted(){
//在mounted中把函数放在全局
window.showZldy=this.showZldy;
},
methods:{
showZldy(value){
console.log('函数调用')
},
}
window.showZldy() //直接调用