Vue 提供了一个官方的 CLI,为单页面应用 (SPA) 快速搭建繁杂的脚手架。它为现代前端工作流提供了开箱即用的构建设置。只需要几分钟的时间就可以运行起来并带有热重载、保存时 lint
校验,以及生产环境可用的构建版本
安装
1 2 3 4 5 6 7
| npm install -g @vue/cli
yarn global add @vue/cli
vue --version
|
创建项目
1 2 3 4 5 6 7 8
| vue create hello-world
Vue CLI v4.5.15 ? Please pick a preset: > Default ([Vue 2] babel, eslint) Default (Vue 3) ([Vue 3] babel, eslint) Manually select features
|
运行项目
1 2
| cd hello-word npm run serve
|
启动成功
1 2 3 4 5 6 7 8
| DONE Compiled successfully in 2244ms 下午10:20:26
App running at: - Local: http://localhost:8080/ - Network: http://192.168.0.104:8080/
Note that the development build is not optimized. To create a production build, run npm run build.
|