summaryrefslogtreecommitdiff
path: root/src/views/Home.vue
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-03-19 15:05:00 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-03-19 15:05:00 +0100
commit76f1866b9ba0d4fa90395f7f39586367092f15d2 (patch)
tree1fc12bfe371720d8cfc66ae9b72a3528010432ae /src/views/Home.vue
parent24f06a5589bf440df492eb58237b749ebb8f884f (diff)
feat: add header
Diffstat (limited to 'src/views/Home.vue')
-rw-r--r--src/views/Home.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/views/Home.vue b/src/views/Home.vue
index 17ab4d0..55c3c08 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -1,10 +1,15 @@
<template lang="pug">
main
- h1 Hello
+ header-blue
</template>
<script>
+import HeaderBlue from '@/components/design/HeaderBlue';
+
export default {
name: "Home",
+ components: {
+ 'header-blue': HeaderBlue,
+ }
}
</script>