(not found) init not found page

This commit is contained in:
2021-03-21 16:46:33 +01:00
parent ecd615471e
commit 145cdd8984
3 changed files with 49 additions and 0 deletions

37
src/views/SpaceCowboy.vue Normal file
View File

@@ -0,0 +1,37 @@
<template>
<main class="space-cowboy content">
<p>
<img src="@/assets/icons/alert.svg" alt="alert" />
Oops, you've been lost!
<img src="@/assets/icons/alert.svg" alt="alert" />
</p>
<p>A note link can't be used as URL.</p>
<router-link class="button is-links" :to="{ name: 'Home' }"
>return to homepage</router-link
>
</main>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'SpaceCowboy'
})
</script>
<style scoped lang="scss">
.space-cowboy {
display: flex;
flex-direction: column;
flex: 1;
justify-content: center;
align-items: center;
p {
display: flex;
align-items: center;
gap: 1rem;
}
}
</style>