MorJS plugins - 插件配置
2023-11-07 16:35 更新
- 类型:
Plugin[]
- 默认值:
[]
配置 MorJS 插件, 详细参见如何开发 MorJS 插件。
// 配置示例
{
plugins: [
[
'your_custom_mor_plugin',
{
/* 插件选项 */
}
],
// 或
'your_custom_mor_plugin',
// 或
{ name: 'plugin_name', apply(runner) {} },
// 或
new YourCustomMorJSPlugin()
]
}
// 自定义插件
class YourCustomMorJSPlugin {
name = 'YourCustomMorJSPlugin'
apply(runner) {
// plugin 逻辑
}
}
以上内容是否对您有帮助:
更多建议: