# hello_vue **Repository Path**: _Vinku/Hello_vue ## Basic Information - **Project Name**: hello_vue - **Description**: vue2 + vue-router3 + vuex3 + webpack2 项目基本架构 - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Hello_vue vue2 + vue-router3 + vuex3 + webpack2 ## 项目运行(nodejs 6.0+) ``` bash # 克隆到本地 git clone https://github.com/Vinkugor/hello_vue.git # 进入文件夹 cd hello_vue # 安装依赖 npm install # 开启本地服务器localhost:8080 npm run dev # 发布环境 npm run build ``` ## 项目结构 ``` src ├── App.vue ├── assets │ └── logo.png ├── main.js ├── request-config.js ├── router-config.js ├── store │ ├── global │ │ ├── actions.js │ │ ├── getters.js │ │ ├── mutations.js │ │ └── state.js │ ├── modules │ ├── index.js │ └── types.js └── views ├── 404.vue ├── index.vue └── profile.vue ```