💻 | Update all components with Composition API and TypeScript & Add images

This commit is contained in:
2021-03-22 21:48:26 +01:00
parent f2d420a87a
commit 03db9ff299
49 changed files with 770 additions and 69 deletions

2
index.d.ts vendored
View File

@@ -1,5 +1,6 @@
import { NuxtAxiosInstance } from '@nuxtjs/axios'
import VueI18n, {IVueI18n} from "vue-i18n";
import {ColorModeInstance} from "@nuxtjs/color-mode/types/color-mode";
declare module 'vue/types/vue' {
@@ -16,6 +17,7 @@ declare module '@nuxt/types' {
interface Context {
$axios: NuxtAxiosInstance,
$i18n: VueI18n & IVueI18n
$colorMode: ColorModeInstance
}
}