模組 (Runtime)

import { Module } from '@nuxt/types'

interface Options {
  a: boolean
  b: number
  c: string
}

const myModule: Module<Options> = function (moduleOptions) {
  // 使用 this, this.options, this.nuxt
  // 使用 moduleOptions
}

export default myModule

// 如果要將這個模組發佈成 npm 套件時,必要使用
// export const meta = require('./package.json')