add some shit
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
<footer>
|
||||
<slot>All rights reserved</slot>
|
||||
<template v-if="this.date">
|
||||
|
||||
• {{ this.year }}
|
||||
</template>
|
||||
</footer>
|
||||
@@ -15,7 +14,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
year: 0,
|
||||
};
|
||||
}
|
||||
},
|
||||
props: {
|
||||
date: {
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
<script lang="ts" setup>
|
||||
|
||||
</script>
|
||||
<script lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
asdf
|
||||
<body>
|
||||
asdf
|
||||
</body>
|
||||
</template>
|
||||
@@ -0,0 +1,14 @@
|
||||
<script lang="ts" setup>
|
||||
|
||||
</script>
|
||||
<script lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<body>
|
||||
Several assets were aquired from <a href="https://hollowknight.wiki/">the Hollow Knight wiki</a>, under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">
|
||||
Creative Commons Attribution-ShareAlike 3.0
|
||||
</a> licence.
|
||||
</body>
|
||||
</template>
|
||||
@@ -1,12 +1,14 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router';
|
||||
import App from '../App.vue';
|
||||
import HomeView from '../pages/HomeView.vue';
|
||||
import LegalView from '../pages/LegalView.vue';
|
||||
|
||||
const routes = [
|
||||
{ path: '/',
|
||||
children:
|
||||
[
|
||||
{ path: '', component: HomeView },
|
||||
{ path: '/legal', component: LegalView },
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user