blob: b0db4f9a9c2f426c1d55548188a12a83c6f27e33 (
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
50
|
<template>
<div class="row mx-0">
<div id="header" class="col d-flex mt-3 ms-2">
<BaseBackButton to="/" />
<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 BaseBackButton from "./BaseBackButton";
import { watch, reactive, toRefs } from "vue";
export default {
name: "RepositoryHeader",
components: {
BaseBackButton
},
props: {
repository: {
type: String,
required: true
}
},
setup(props)
{
const state = reactive({ title: "", about: "" });
watch(() =>
{
fetch(`http://localhost:1337/api/v1/repos/${props.repository}`)
.then((res) => res.json())
.then((data) =>
{
state.title = data["data"]["name"];
state.about = data["data"]["description"];
});
});
return {
... toRefs(state)
};
}
}
</script>
|