├── static ├── .gitkeep └── img │ └── girl.png ├── .eslintignore ├── dist ├── app.wxss ├── static │ ├── css │ │ ├── vendor.wxss │ │ ├── pages │ │ │ ├── logs │ │ │ │ └── main.wxss │ │ │ ├── counter │ │ │ │ └── main.wxss │ │ │ └── index │ │ │ │ └── main.wxss │ │ └── app.wxss │ ├── img │ │ └── girl.png │ └── js │ │ ├── manifest.js │ │ ├── pages │ │ ├── counter │ │ │ └── main.js │ │ ├── logs │ │ │ └── main.js │ │ └── index │ │ │ └── main.js │ │ ├── app.js │ │ └── vendor.js ├── components │ ├── slots.wxml │ ├── card$79c1b934.wxml │ ├── logs$31942962.wxml │ ├── counter$6c3d87bf.wxml │ └── index$622cddd6.wxml ├── pages │ ├── logs │ │ ├── main.json │ │ ├── main.wxss │ │ ├── main.wxml │ │ └── main.js │ ├── index │ │ ├── main.wxss │ │ ├── main.wxml │ │ └── main.js │ └── counter │ │ ├── main.wxss │ │ ├── main.wxml │ │ └── main.js ├── app.js ├── copy-asset │ └── assets │ │ └── logo.png └── app.json ├── config ├── prod.env.js ├── dev.env.js └── index.js ├── configH5 ├── prod.env.js ├── dev.env.js └── index.js ├── src ├── assets │ └── logo.png ├── pages │ ├── counter │ │ ├── main.js │ │ └── index.vue │ ├── index │ │ ├── main.js │ │ └── index.vue │ └── logs │ │ ├── main.js │ │ └── index.vue ├── components │ └── card.vue ├── store │ └── index.js ├── api │ ├── httpService.js │ └── wxService.js ├── utils │ └── index.js ├── router │ └── index.js ├── mainH5.js ├── main.js ├── App.vue └── AppH5.vue ├── distH5 ├── static │ ├── img │ │ ├── girl.png │ │ └── logo.png │ ├── js │ │ ├── manifest.js │ │ └── app.js │ └── css │ │ └── app.css └── index.html ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── .babelrc ├── index.html ├── .eslintrc.js ├── project.config.json ├── package.json └── README.md /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /dist/app.wxss: -------------------------------------------------------------------------------- 1 | @import "./static/css/app.wxss"; -------------------------------------------------------------------------------- /dist/static/css/vendor.wxss: -------------------------------------------------------------------------------- 1 | .card{padding:20rpx;margin:0} -------------------------------------------------------------------------------- /dist/components/slots.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/pages/logs/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /dist/pages/logs/main.wxss: -------------------------------------------------------------------------------- 1 | @import "../../static/css/pages/logs/main.wxss"; -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /dist/pages/index/main.wxss: -------------------------------------------------------------------------------- 1 | @import "../../static/css/pages/index/main.wxss"; -------------------------------------------------------------------------------- /configH5/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /dist/pages/counter/main.wxss: -------------------------------------------------------------------------------- 1 | @import "../../static/css/pages/counter/main.wxss"; -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /static/img/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/static/img/girl.png -------------------------------------------------------------------------------- /dist/static/img/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/dist/static/img/girl.png -------------------------------------------------------------------------------- /distH5/static/img/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/distH5/static/img/girl.png -------------------------------------------------------------------------------- /distH5/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/distH5/static/img/logo.png -------------------------------------------------------------------------------- /dist/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./static/js/manifest') 3 | require('./static/js/vendor') 4 | require('./static/js/app') 5 | -------------------------------------------------------------------------------- /dist/copy-asset/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aimee1608/mpvuedemo/HEAD/dist/copy-asset/assets/logo.png -------------------------------------------------------------------------------- /src/pages/counter/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /src/pages/index/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './index' 3 | 4 | const app = new Vue(App) 5 | app.$mount() 6 | -------------------------------------------------------------------------------- /dist/pages/logs/main.wxml: -------------------------------------------------------------------------------- 1 |