refactor: rename component imports
This commit is contained in:
parent
32c63efeaa
commit
4384759616
1 changed files with 6 additions and 6 deletions
12
src/App.vue
12
src/App.vue
|
@ -2,8 +2,8 @@
|
||||||
import { ref, provide } from "vue";
|
import { ref, provide } from "vue";
|
||||||
import { RouterView } from "vue-router";
|
import { RouterView } from "vue-router";
|
||||||
import { isWarnKey, modalResultKey, nsfwKey, showModalKey } from "@/keys";
|
import { isWarnKey, modalResultKey, nsfwKey, showModalKey } from "@/keys";
|
||||||
import RefHeader from "@/components/RefHeader.vue";
|
import SiteHeader from "@/components/SiteHeader.vue";
|
||||||
import RefFooter from "@/components/RefFooter.vue";
|
import SiteFooter from "@/components/SiteFooter.vue";
|
||||||
import SiteNavigation from "@/components/SiteNavigation.vue";
|
import SiteNavigation from "@/components/SiteNavigation.vue";
|
||||||
import pkg from "../package.json";
|
import pkg from "../package.json";
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ provide(showModalKey, showModal);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<RefHeader>
|
<SiteHeader>
|
||||||
<!-- max 500px -->
|
<!-- max 500px -->
|
||||||
<picture>
|
<picture>
|
||||||
<source
|
<source
|
||||||
|
@ -64,17 +64,17 @@ provide(showModalKey, showModal);
|
||||||
</picture>
|
</picture>
|
||||||
|
|
||||||
<SiteNavigation />
|
<SiteNavigation />
|
||||||
</RefHeader>
|
</SiteHeader>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<RouterView />
|
<RouterView />
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<RefFooter>
|
<SiteFooter>
|
||||||
<p>v{{ version }} © {{ new Date().getFullYear() }} Sebin Nyshkim</p>
|
<p>v{{ version }} © {{ new Date().getFullYear() }} Sebin Nyshkim</p>
|
||||||
<p>
|
<p>
|
||||||
Background Pattern ©
|
Background Pattern ©
|
||||||
<a href="https://www.svgbackgrounds.com/">SVG Backgrounds</a>
|
<a href="https://www.svgbackgrounds.com/">SVG Backgrounds</a>
|
||||||
</p>
|
</p>
|
||||||
</RefFooter>
|
</SiteFooter>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue