blob: 9a0688dc9ebb2b68621459fb3b7fa42f47b0e3fc (
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
|
<template>
<div class="row mx-0">
<div id="header" class="col d-flex mt-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>
</div>
</template>
<script>
import { watch, reactive, toRefs } from "vue";
export default {
name: "HomeHeader",
setup()
{
const state = reactive({ title: "", about: "" });
watch(() =>
{
fetch(`${window.location.protocol}//${window.location.host}/api/v1/info`)
.then((res) => res.json())
.then((data) =>
{
state.title = data["data"]["title"],
state.about = data["data"]["about"]
});
});
return {
... toRefs(state)
};
}
}
</script>
|