Added prototype of contact

This commit is contained in:
2021-07-12 19:17:16 +02:00
parent 928a863c13
commit 9e1084cf5f
3 changed files with 36 additions and 9 deletions

16
src/views/Contact.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div class="contact">
<h1>{{ $route.meta.title }}</h1>
<p>Witam wszystkich bardzo serdecznie!</p>
</div>
</template>
<script>
export default {
name: 'Contact'
}
</script>
<style scoped>
</style>