# ManagementSystemTemplate **Repository Path**: zhonghuanting_admin/ManagementSystemTemplate ## Basic Information - **Project Name**: ManagementSystemTemplate - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2018-05-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # management > A Vue.js project ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report ``` For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). git init //git初始化 touch README.md git add README.md //添加README.md文件 git commit -m "first commit" //提交并注释 git remote add origin https://git.oschina.net/你的码云账号/GitHelloWorld.git(报错后先输入 git remote rm origin) git push -u origin master //上传到码云git 远程仓 永久记住密码 git config --global credential.helper store src/开发目录 pComponents 公共组件 pComponents 页面组件 pipes 辅助工具 providers 与数据关联的工具 dis product包 async refreshData () { console.log(1) var a = await service.login() console.log(2) // return Promise.reslove() }, async test () { await this.refreshData() console.log("test") }