https://github.com/gqzdev/vue-start
🕊️🕊️🕊️学习Vue,从入门到源码分析
https://github.com/gqzdev/vue-start
vue-cli vue-demo vuex
Last synced: 28 days ago
JSON representation
🕊️🕊️🕊️学习Vue,从入门到源码分析
- Host: GitHub
- URL: https://github.com/gqzdev/vue-start
- Owner: gqzdev
- Created: 2019-09-27T09:20:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T00:46:52.000Z (over 3 years ago)
- Last Synced: 2025-07-17T07:46:51.849Z (11 months ago)
- Topics: vue-cli, vue-demo, vuex
- Language: JavaScript
- Homepage: https://cn.vuejs.org/
- Size: 800 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-start
[](http://ganquanzhong.top)
[](http://ganquanzhong.top)
[](https://github.com/gqzdev)
[](https://blog.csdn.net/ganquanzhong)
[](https://github.com/gqzdev/shop)
[](https://github.com/gqzdev/shop)
[](https://github.com/gqzdev/shop)
[](https://github.com/gqzdev/shop)
[](https://gitee.com/zhong96)
# 这在里发布关于Vue开发的案例和技术原理讲解
## 说明
| | |
|--|--|
|[VueTest](https://github.com/gqzdev/vue-start/tree/master/VueTest) | 入门vue的语法知识|
|[Vuedemo](https://github.com/gqzdev/vue-start/tree/master/VueDemo) | 入门vue项目开发的一些案例|
|[VuexTest](https://github.com/gqzdev/vue-start/tree/master/VuexTest) | vuex的状态管理案例|
|[VueSource](https://github.com/gqzdev/vue-start/tree/master/VueSource) | vue的部分源码分析|
## vuedemo项目中包含多个案例
使用npm install --save '需要的依赖'
配置当前项目是运行那一个
在VueDemo\build\webpack.base.conf.js文件中修改
```javascript
/*指定app主应用src*/
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
//修改src_模块即可
app: './src_mint-ui/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},