微信小程序SDK
如何使用
- 通过
npm
安装npm install --save-dev dokit-miniapp
- 然后从node_modules中将
dist/
目录拷贝到自己的项目中,然后按如下方式进行使用
在需要引用工具的页面 page.json 中引入组件
"usingComponents": {
"dokit": "../../dist/index/index"
}
在 page.wxml 中使用组件
<dokit/>
在应用app.json中通过如下方式注册需要依赖的页面
"pages": [
"dist/appInformation/appInformation",
"dist/debug/debug",
"dist/h5door/h5door",
"dist/logs/logs",
"dist/positionSimulation/positionSimulation",
"dist/storage/storage",
"dist/index/index"
]
由于微信小程序暂不支持开发环境和生产环境判断,请在生产环境手动删掉引用