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