perf(ChangeLog): update styles
This commit is contained in:
parent
9ef650d7dc
commit
cf7986ba5a
@ -14,13 +14,17 @@ const { isFetching, data } = useFetch('https://git.thehrz.net/api/v1/repos/thehr
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<p v-if="isFetching">
|
<v-card>
|
||||||
Loading...
|
<p v-if="isFetching">
|
||||||
</p>
|
Loading...
|
||||||
|
</p>
|
||||||
<v-list v-else lines="two">
|
<v-list v-else color="primary">
|
||||||
<v-list-item v-for="commit in data" :key="commit.commit.message" :title="commit.commit.message" subtitle="..." />
|
<v-list-item
|
||||||
</v-list>
|
v-for="commit in data" :key="commit.commit.message" :title="commit.commit.message"
|
||||||
|
:subtitle="`${commit.sha.slice(0, 6)} ${commit.author.username}`"
|
||||||
|
/>
|
||||||
|
</v-list>
|
||||||
|
</v-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
Loading…
Reference in New Issue
Block a user