mpvue-page-factory icon indicating copy to clipboard operation
mpvue-page-factory copied to clipboard

Results 18 mpvue-page-factory issues
Sort by recently updated
recently updated
newest added

直接上图 ![QQ截图20190428195634](https://user-images.githubusercontent.com/6055762/56863989-d4cfd000-69ef-11e9-9593-91755eb07a93.png) ![QQ截图20190428195703](https://user-images.githubusercontent.com/6055762/56863991-d6999380-69ef-11e9-8008-300327b45d13.png)

mpvue1.4.0用哪个版本啊

this.$root.$mp.appOptions not found

步骤: 1. 通过vue init mpvue/mpvue-quickstart my-project生成mpvue demo 2. 引入mpvue-page-facotry库 3. 加业务代码 发现问题: 无法定位代码错误,统一报错:ReferenceError: handleError is not defined,截图如下 ![image](https://user-images.githubusercontent.com/13348046/53864715-27ac8d00-4028-11e9-9e12-d37f25248379.png)

看了下源码,onShareAppMessage必须在App上有定义才能调用,但是在mixins的时候是不会注册上去的,不知道大佬是作何考虑,可以去掉这个判断么? ```javascript // // 用户点击右上角分享 onShareAppMessage: App.onShareAppMessage ? function (options) { var rootVueVM = getRootVueVm(this); return callHook$1(rootVueVM, 'onShareAppMessage', options); } : null,` ```

你好, 我使用了你的 mpvue-loader 后, yarn dev 无法正常运行,具体表现为 $ yarn dev ![image](https://user-images.githubusercontent.com/25004510/48966435-6df75680-f00c-11e8-9f0e-436ce44f8bff.png) 之后没有任何的报错与编译完成动作,一直停在这里 我粗略翻了翻 issues ,好像别人没有这个情况, 我想了想,可能是我用的系统是linux(ubuntu 16.04)的关系? 然后我换回官方的loader,没有什么问题,然后就用下来了 后来有一天需要加页面,加了页面后,没有编译出页面入口的 .wxml, 后来各种排错后,发现是换了这个包的关系, 主要原因应该还是我没有使用你的loader,所以没有生成 .wxml ? 之前用官方的loader,可以正常使用,是因为这个包是后来才添加上去的,原先的页面已经生成出 .wxml 最后经过一番折腾,发现使用官方的loader同时把pageFactory的代码直接拷贝到main.js也可以正常编译出 .wxml , 所以你的...