Importing Vue npm module into my javascript file

2019-02-28 00:39发布

问题:

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

回答1:

First, install the package:

$ npm install vue

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

import Vue from 'vue'


标签: npm vue.js