标签:try host 项目 for 电脑 started tps lob 创建项目
安装淘宝镜像 $ npm:npm install -g cnpm --registry=https://registry.npm.taobao.org # 升级 npm $ cnpm install npm -g
$ cnpm install vue
1)# 全局安装 vue-cli $ cnpm install --global vue-cli 2)# 下载webpack离线安装包 $ https://github.com/vuejs-templates/webpack.git 3)# 在用户目录下查看是否有.vue-templates目录,没有的,则创建 # (文件名命名:文件名之后加点 即.vue-templates.回车就是需要的) # 命令行:cd users/HP(其中HP是电脑用户名,根据实际情况选择);makir .vue-templates 4)# 离线模板创建项目: $ vue init webpack my-project --offline # 这里需要进行一些配置,默认回车即可 This will install Vue 2.x version of the template. For Vue 1.x use: vue init webpack#1.0 my-project ? Project name my-project ? Project description A Vue.js project ? Author runoob <test@runoob.com> ? Vue build standalone ? Use ESLint to lint your code? Yes ? Pick an ESLint preset Standard ? Setup unit tests with Karma + Mocha? Yes ? Setup e2e tests with Nightwatch? Yes vue-cli · Generated "my-project". To get started: cd my-project npm install npm run dev Documentation can be found at https://vuejs-templates.github.io/webpack
进入项目,安装并运行: $ cd my-project $ cnpm install $ cnpm run dev DONE Compiled successfully in 4388ms > Listening at http://localhost:8081
标签:try host 项目 for 电脑 started tps lob 创建项目
原文地址:https://www.cnblogs.com/songzhixue/p/12807503.html