Last active
November 27, 2021 15:57
-
-
Save fukuiretu/b4b13794972e8234ac09ab96b86ab6e8 to your computer and use it in GitHub Desktop.
Nuxt.jsで必要なTypeScriptの型定義
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import { Route } from 'vue-router' | |
import { Store } from 'vuex' | |
import { MetaInfo } from 'vue-meta' | |
import { AxiosInstance } from 'axios' | |
interface NuxtContext { | |
isClient: boolean | |
isServer: boolean | |
isStatic: boolean | |
isDev: boolean | |
isHMR: boolean | |
route: Route; | |
store: Store<any> | |
env: object | |
query: object | |
nuxtState: object | |
req: Request | |
res: Response | |
params: { [key: string]: any } | |
redirect: (path: string) => void | |
error: (params: { statusCode?: String; message?: String }) => void | |
beforeNuxtRender: ({ Conmponents, nuxtState }) => void | |
$axios: AxiosInstance // axios-moduleを利用している場合 | |
} | |
declare module 'vue/types/options' { | |
interface ComponentOptions<V extends Vue> { | |
layout?: string | |
middleware?: string | String[] | |
fetch?: (context: NuxtContext) => void | |
asyncData?: (context: NuxtContext) => void | |
scrollToTop?: boolean | |
transition?: string | object | Function | |
validate?: (context: NuxtContext) => boolean | |
head?: MetaInfo | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
すごい参考になりました!
ちなみに
head
の返り値はvue-meta
のMetaInfo
を使うのがよりよさそうです。