Add new mobile menu

This commit is contained in:
2021-08-12 22:04:47 +02:00
parent 164238d624
commit e8484f98d5
17 changed files with 467 additions and 56 deletions

1
types/index.d.ts vendored
View File

@@ -3,6 +3,7 @@ import VueI18n, {IVueI18n} from "vue-i18n";
import {ColorModeInstance} from "@nuxtjs/color-mode/types/color-mode";
import {NuxtApp} from "@nuxt/types/app";
import {NuxtStorage} from "@nuxtjs/universal-storage";
import {NuxtOptionsRouter} from "@nuxt/types/config/router";
declare module 'vue/types/vue' {

View File

@@ -69,4 +69,14 @@ interface NewsletterForm {
email: string
}
export { Form, InfoData, Skill, Experience, Formation, Post, Tag, Project, GuestbookForm, NewsletterForm }
interface Translation {
code: string,
english: string,
french: string
}
interface State {
opened: boolean
}
export { Form, InfoData, Skill, Experience, Formation, Post, Tag, Project, GuestbookForm, NewsletterForm, Translation, State }