Vue is not defined

后端 未结 6 584
一向
一向 2021-02-07 04:48

I am trying to build a demo app with Vue.js. What I am getting is an odd error that Vue is not defined.





        
6条回答
  •  遇见更好的自我
    2021-02-07 05:41

    Sometimes the problem may be if you import that like this:

    const Vue = window.vue;
    

    this may overwrite the original Vue reference.

提交回复
热议问题