blob: 24afd5b6a3c6d86d389880609ed5c52965ef2089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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>
|