Importing Vue npm module into my javascript file

后端 未结 1 1608
终归单人心
终归单人心 2021-01-24 06:29

What is the proper way to import VueJs into my javascript file using NPM? I am getting a Vue is not defined error.

相关标签:
1条回答
  • 2021-01-24 06:51

    First, install the package:

    $ npm install vue
    

    And then import it in whatever file you want to use Vue:

    import Vue from 'vue'
    
    0 讨论(0)
提交回复
热议问题