mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
Allow special characters in the appname to be rendered in the footer
This commit is contained in:
parent
493097b131
commit
30c001cc6f
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<footer class="footer-section-component">
|
<footer class="footer-section-component">
|
||||||
© {{ new Date().getFullYear() }} {{ $store.getters.getAppName }}
|
© {{ new Date().getFullYear() }} <span v-html="$store.getters.getAppName"></span>
|
||||||
</footer>
|
</footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue