如何在index.html中调用其他vue组件函数?
我试图像“从'./home'导入家庭;”这样导入,但是不起作用...
在index.html
中<script type="text/javascript">
function callHomeFunction(){
//code for calling function in home
//need to call -> "callThisFunction()"
}
</script>
在home.vue
<script>
export default {
created(){},
methods:{
callThisFunction(){
console.log('yes calling')
}
}
}
</script>