Files
cook/src/modules
2022-06-27 08:49:55 +08:00
..
2022-04-13 22:41:22 +08:00
2022-04-13 22:41:22 +08:00
2022-06-27 08:49:55 +08:00
2022-04-13 22:41:22 +08:00
2022-04-27 02:20:33 +08:00

Modules

A custom user module system. Place a .ts file with the following template, it will be installed automatically.

import { type UserModule } from '~/types'

export const install: UserModule = ({ app, router, isClient }) => {
  // do something
}