feat: allow html in footer (#1034)

pull/1036/head
Divyansh Singh 2 years ago committed by GitHub
parent f939b8a8e8
commit ad9af83278
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,8 +9,8 @@ const { hasSidebar } = useSidebar()
<template>
<footer v-if="theme.footer" class="VPFooter" :class="{ 'has-sidebar': hasSidebar }">
<div class="container">
<p class="message">{{ theme.footer.message }}</p>
<p class="copyright">{{ theme.footer.copyright }}</p>
<p class="message" v-html="theme.footer.message"></p>
<p class="copyright" v-html="theme.footer.copyright"></p>
</div>
</footer>
</template>

Loading…
Cancel
Save