20 lines
302 B
Vue
20 lines
302 B
Vue
<template>
|
|
<v-layout
|
|
style="height: 100%;"
|
|
column
|
|
align-center
|
|
justify-center
|
|
>
|
|
<h1 class="text-h1">
|
|
404
|
|
</h1>
|
|
<h1 class="ma-4 text-h3">
|
|
No page was found for this address
|
|
</h1>
|
|
</v-layout>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
export default {}
|
|
</script>
|