2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-23 02:50:34 +03:00

Merge pull request #222 from u3u/hotfix/types

fix(types): `metaInfo` should always be a member function
This commit is contained in:
Sébastien Chopin
2018-07-05 18:00:18 +02:00
committed by GitHub
+1 -1
View File
@@ -13,6 +13,6 @@ declare module "vue/types/options" {
declare module "vue/types/vue" { declare module "vue/types/vue" {
interface Vue { interface Vue {
metaInfo?: MetaInfo | (() => MetaInfo) metaInfo(): MetaInfo
} }
} }