小程序踩坑指南
- 小程序使用v-html会转译成Rich-text,不支持 id 属性 不支持
<table>
- Web-view在小程序不支持加载本地html
- uniapp不在浏览器环境下运行 无法访问window、document等api
- props无法传递函数
- uview-form在小程序需要手动设置校验规则setRules
- 无法使用eval函数等js解释器
- 使用v-deep需要在data()同级添加
options: { styleIsolation: 'shared', }
<table>
options: { styleIsolation: 'shared', }