MorJS 插件示例 使用方式
通过 MorJS 提供的
aApp
或 wApp
来使用插件的方法:// 在小程序的 app.js 中
import aApp from '@morjs/core'
import YourCustomRuntimePlugin from 'your_custom_runtime_plugin'
aApp(
{
onLaunch() {}
},
[
() => {
plugins: [new YourCustomRuntimePlugin()]
}
]
)