vue 初体验

vue 的利器脚手架的安装npm install -g vue-cli,如果权限有问题就输入

sudo npm install -g vue-cli

几秒过后安装完成,在终端输入 vue检查是否安装成功;

vue list 查看都有什么模板

接着选定一个目录,进行如下操作

vue init webpack sell
这里的 sell 是项目的名字接着会有一些选择的地方

? Project name sell
? Project description sell app
? Author Dragon_Zin < xxxxx@qq.com>
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Standard
? Set up unit tests No
? Setup e2e tests with Nightwatch? No
? Should we run `npm install` for you after the project has been created? (recom
mended) npm

成功之后的温馨提示:

To get started:

cd sell
npm run dev

http://localhost:8081
成功访问这里即可