微信小程序
微信开发工具:https://developers.weixin.qq.com/miniprogram/dev/devtools/stable.html
微信小程序后台:https://mp.weixin.qq.com/
注意微信每个应用的appid和key都不一样的,需要在客户端和服务端都区分
踩坑
对自定义的组件属性 style="margin-top: 10px;" 会无效,需要使用custom-style="margin-top: 10px;"
对类似Component is not found in path " *************" (using by "pages/home/index")
错误,编辑manifest.json的微信小程序配置添加:"component" : true
微信小程序和app均不支持vue3的defineAsyncComponent
支持 @根路径
在page.json加入
//创建根路径映射
"resolveAlias": {
"@/*": "/*"
}