fix: v-html img (#47)

This commit is contained in:
Dream Hunter
2023-12-15 14:43:25 +08:00
committed by GitHub
parent fa998514f7
commit af78248145

View File

@@ -167,10 +167,12 @@ onMounted(async () => {
<n-button class="center" @click="refresh" round type="primary">
{{ t('refresh') }}
</n-button>
<n-list hoverable clickable>
<div>
<div style="display: inline-block; margin-top: 10px; margin-bottom: 10px;">
<n-pagination v-model:page="page" v-model:page-size="pageSize" :item-count="count" simple />
</div>
</div>
<n-list hoverable clickable>
<n-list-item v-for="row in data" v-bind:key="row.id">
<n-thing class="center" :title="row.subject">
<template #description>
@@ -234,8 +236,4 @@ onMounted(async () => {
margin-bottom: 10px;
text-align: center;
}
.n-list {
text-align: center;
}
</style>