diff options
Diffstat (limited to 'src/frontend/views/Home.vue')
-rw-r--r-- | src/frontend/views/Home.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/views/Home.vue b/src/frontend/views/Home.vue index 9ee5c02..e3746c7 100644 --- a/src/frontend/views/Home.vue +++ b/src/frontend/views/Home.vue @@ -1,6 +1,6 @@ <template> <HomeHeader /> - <div class="row mx-0 mt-5"> + <div class="row mx-0"> <div id="projects-header" class="col ms-4"> <p class="fs-1"> Projects @@ -43,7 +43,7 @@ export default { }, setup() { - const state = reactive({ projects: Object, search: String }); + const state = reactive({ projects: {}, search: "" }); watch(() => { |