mirror of
https://github.com/GeorgeSG/v0.gar.dev
synced 2025-12-28 21:30:29 +00:00
15 lines
372 B
Vue
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>
|