本文实战为主,没有基础,真正的基础是要从实战开始:::css
安集vue集成环境:vue
npm install -g vue-cliwebpack
执行vue检查安装状况:web
Options:
-V, --version output the version number
-h, --help output usage informationvue-router
Commands:
init generate a new project from a template
list list available official templates
build prototype a new project
create (for v3 warning only)
help [cmd] display help for [cmd]vue-cli
查看安装包:vue listnpm
★ browserify - A full-featured Browserify + vueify setup with hot-reload, linting & unit testing.
★ browserify-simple - A simple Browserify + vueify setup for quick prototyping.
★ pwa - PWA template for vue-cli based on the webpack template
★ simple - The simplest possible Vue setup in a single HTML file
★ webpack - A full-featured Webpack + vue-loader setup with hot reload, linting, testing & css extraction.
★ webpack-simpleapp
说明默认使用了webpack打包ui
使用webpack模板pwa
执行 vue init webpack sell
会提示安装好多 环境:
C:\Users\Administrator>vue init webpack sell
? Project name sell
? Project description sell app
? Author xsy
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Standard
? Set up unit tests Yes
? Pick a test runner jest
? Setup e2e tests with Nightwatch? No
? Should we run `npm install` for you after the project has been created? (recommended) npm
vue-cli · Generated "sell".
进入目录
cd sell
执行安装npm install
安装好后 npm run dev 运行项目
提示下面这个的时候表示,能启用了
NE Compiled successfully in 109695ms 09:58:00
I Your application is running here: http://localhost:8080