diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-05 19:37:52 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-05 19:37:52 +0200 |
commit | 4da3272bf7893760f6710c9a1ec7de02358136e6 (patch) | |
tree | 92eb961bf20a7ef9f7c0650ba288baf512986fca /packages/client/src/components/HomeHeader.vue | |
parent | 4e3074dfd752dd52951d300090c642aee76cfaac (diff) |
Reorganized into a monorepo, refactored the frontend again, goodbye Parcel
Diffstat (limited to 'packages/client/src/components/HomeHeader.vue')
-rw-r--r-- | packages/client/src/components/HomeHeader.vue | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/packages/client/src/components/HomeHeader.vue b/packages/client/src/components/HomeHeader.vue new file mode 100644 index 0000000..24afd5b --- /dev/null +++ b/packages/client/src/components/HomeHeader.vue @@ -0,0 +1,49 @@ +<template> + <div id="header" class="d-flex mt-3 mb-3 ms-2"> + <div class="d-inline ms-3"> + <span id="title" class="fs-1">{{ title }}</span> + <p id="about" class="mb-3 fs-4"> + {{ about }} + </p> + </div> + </div> +</template> + +<script> +import { ref } from "vue"; + +export default { + name: "HomeHeader", + setup() { + const title = ref(""); + const about = ref(""); + + const fetchInfo = async() => { + const data = await (await fetch(`${window.location.protocol}//${window.location.host}/api/v1/info`)).json(); + console.log(data.data); + title.value = data.data.title; + about.value = data.data.about; + }; + + return { title, about, fetchInfo }; + }, + mounted() { + this.fetchInfo(); + } +}; +</script> + +<style lang="scss"> +@import "../scss/fonts"; + +#title { + font-family: $font-title; + font-weight: 300; + line-height: 0.6; +} + +#about { + font-weight: 300; + padding-left: 1px; +} +</style> |