Update life-cycle.md

This commit is contained in:
Zhou 2022-11-06 08:46:25 +08:00 committed by GitHub
parent 9838d67ccb
commit 7f6cabec3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,10 +15,10 @@ import { InstallOptions, Plugin } from '@nocobase/server';
export class MyPlugin extends Plugin { export class MyPlugin extends Plugin {
afterAdd() { afterAdd() {
// 插件 pm.add 注册进来之后主要用于放置 app.beforeLoad 的事件。 // 插件 pm.add 注册进来之后主要用于放置 app.beforeLoad 的事件。
} }
beforeLoad() { beforeLoad() {
// 所有插件执行 load 之前一般用于注册类和事件监听 // 所有插件执行 load 之前一般用于注册类和事件监听
} }
async load() { async load() {
// 加载配置 // 加载配置