* 确认node安装好, npm可用
node -v npm -v
* 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
* 安装vue-cli
cnpm install -g vue-cli vue -V
* 创建项目my-vue
vue init webpack my-vue
初始化项目中有一步问到是否创建router,选择是
这样就有了 vue-router可以配置路由 Vue.use(Router)
* 启动项目
cd my-vue cnpm install npm run dev
原文地址:https://www.cnblogs.com/mingzhanghui/p/9462071.html
时间: 2024-10-31 22:22:57