小程序 & taro 踩坑指南 微信开发者工具, 不支持 react bug https://github.com/NervJS/taro/issues/5042 solution just following below steps 1. comment out ./config/index.js 's copy object 2. you have to manually install yarn add @tarojs/redux-h5 (if using Redux) xgqfrms 2…
项目之始: 一.搭建新项目时出现了 page[pages/XXX/XXX] not found.May be caused by :1. Forgot to add page route in app.json.2. Invoking Page() in async task. 解决办法: 1.在每个页面文件夹下的xxx.js文件中添加 Page({ }) 注意:Page的大写(坑死我了) 2.app.json中的页面注册不可忘记 注意:app.json里面的路由填写顺序,如一般二级界面就写在一…
本文会不定期更新在nuxt.js中遇到的问题进行汇总.转发请注明出处,尊重作者,谢谢! 强烈推荐作者文档版踩坑指南,点击跳转踩坑指南 在Nuxt的官方文档中,中文文档和英文文档都存在着不小的差异. 1.路径匹配问题: In Nuxt.js, the path match is as follows: @import url('~assets/css/style.css') //Error This path matching is an error, and writing it like th…