摘要: 安装 cnpm install webpack-bundle-analyzer -D 修改vue.config.js module.exports = { chainWebpack: config => { if (process.env.use_analyzer) { // 分析 config . 阅读全文
posted @ 2020-11-09 22:57 laowang666888 阅读(103) 评论(0) 推荐(0) 编辑
摘要: navigationStyle:custom 你的页面布局应该是从那个电量栏开始的 然后你就自己画了 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/page.html 阅读全文
posted @ 2020-11-09 22:50 laowang666888 阅读(157) 评论(0) 推荐(0) 编辑
摘要: props/@on+$emit 用于实现父子组件间通信。通过 props 可以把父组件的消息传递给子组件: // parent.vue <child :title="title"></child> // child.vue props: { title: { type: String, defaul 阅读全文
posted @ 2020-11-09 21:58 laowang666888 阅读(157) 评论(0) 推荐(0) 编辑