原理:就是把VUE内的方法赋值给JS
//JS
function getdetail(){};
//VUE部分
export default {
data() {
return {
title: '首页',
}
},
mounted() {
// methods里面定义的方法, 需要赋值给window
window.getdetail = this.getdetails;
},
methods: {
getdetails() {
console.log(111);
},
}
}