genadmin/src/modules/README.md

12 lines
262 B
Markdown
Raw Normal View History

2022-01-10 10:40:05 +00:00
## Modules
A custom user module system. Place a `.ts` file with the following template, it will be installed automatically.
```ts
import { UserModule } from '~/types'
export const install: UserModule = ({ app, router, isClient }) => {
// do something
}
```