Skip to content

Commit

Permalink
feat: footer support html (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamhunter2333 authored Jan 21, 2025
1 parent 3f81fbe commit 37614ce
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions frontend/src/views/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ const { t } = useI18n({
<div>
<n-divider class="footer-divider" />
<div style="text-align: center; padding: 20px">
<n-text depth="3">
{{ t('copyright') }} © 2023-{{ new Date().getFullYear() }} {{ openSettings.copyright }}
</n-text>
<n-space justify="center">
<n-text depth="3">
{{ t('copyright') }} © 2023-{{ new Date().getFullYear() }}
</n-text>
<n-text depth="3">
<div v-html="openSettings.copyright"></div>
</n-text>
</n-space>
</div>
</div>
</template>
Expand Down

0 comments on commit 37614ce

Please sign in to comment.