# vueStudy **Repository Path**: hzjanger/vueStudy ## Basic Information - **Project Name**: vueStudy - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 安装 ## 安装命令行工具 安装Vue CLI脚手架 > 安装Vue CLI需要安装nodejs,安装nodejs教程[https://hzjanger.github.io/AngularStudy/](https://hzjanger.github.io/AngularStudy/) ```bash npm install -g @vue/cli # 也可以好用yarn安装 yarn global add @vue/cli ``` ## 创建项目 ```bash # 项目名不能有大写字母 vue create vue-demo ``` 选择默认即可 ## 启动项目 ```bash npm run serve ```