Allow special characters in the appname to be rendered in the footer

This commit is contained in:
Kevin MacMartin 2018-02-04 18:15:42 -05:00
parent 493097b131
commit 30c001cc6f

View file

@ -1,5 +1,5 @@
<template>
<footer class="footer-section-component">
&copy; {{ new Date().getFullYear() }} {{ $store.getters.getAppName }}
&copy; {{ new Date().getFullYear() }} <span v-html="$store.getters.getAppName"></span>
</footer>
</template>