diff options
| author | Fuwn <[email protected]> | 2021-11-04 00:27:59 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-11-04 00:27:59 -0700 |
| commit | fa6eaeeba839208731ac3b86ef9eb2186b9d9f5d (patch) | |
| tree | 0c012a9c12283df049b4573be838418558da0ac3 /layouts/default.vue | |
| parent | feat: new (diff) | |
| download | yucky.fun-fa6eaeeba839208731ac3b86ef9eb2186b9d9f5d.tar.xz yucky.fun-fa6eaeeba839208731ac3b86ef9eb2186b9d9f5d.zip | |
fix: everything
Diffstat (limited to 'layouts/default.vue')
| -rw-r--r-- | layouts/default.vue | 13 |
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> |