aboutsummaryrefslogtreecommitdiff
path: root/layouts/default.vue
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-11-04 00:27:59 -0700
committerFuwn <[email protected]>2021-11-04 00:27:59 -0700
commitfa6eaeeba839208731ac3b86ef9eb2186b9d9f5d (patch)
tree0c012a9c12283df049b4573be838418558da0ac3 /layouts/default.vue
parentfeat: new (diff)
downloadyucky.fun-fa6eaeeba839208731ac3b86ef9eb2186b9d9f5d.tar.xz
yucky.fun-fa6eaeeba839208731ac3b86ef9eb2186b9d9f5d.zip
fix: everything
Diffstat (limited to 'layouts/default.vue')
-rw-r--r--layouts/default.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/default.vue b/layouts/default.vue
index ce85466..5abf37a 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -5,3 +5,16 @@
<Footer />
</div>
</template>
+
+<script>
+import ResponsiveBar from '~/components/navigation/ResponsiveBar'
+import Footer from '~/components/navigation/Footer'
+
+export default {
+ name: 'default.vue',
+ components: {
+ ResponsiveBar,
+ Footer
+ }
+}
+</script>