如何在index.html(Vue.js)中调用其他vue组件函数

时间:2019-07-04 09:13:11

标签: javascript vue.js

如何在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>

0 个答案:

没有答案