Files
v0.gar.dev/layouts/error.vue
2020-02-11 02:27:53 +02:00

15 lines
372 B
Vue

<template lang="pug">
main
h1 Georgi Gardev
p Oops. It looks like you got lost there! This page doesn't exist... yet :)
Social
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Social from '~/components/Social.vue';
@Component({ components: { Social } })
export default class ErrorPage extends Vue {}
</script>