Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 262 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 262 Bytes

Modules

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

import { UserModule } from '~/types'

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