clean up footer things

This commit is contained in:
Ginger Wong
2020-06-28 15:08:08 -07:00
parent a9b8a70e8a
commit 6c7af9ffae
5 changed files with 45 additions and 16 deletions

View File

@@ -1,9 +1,17 @@
Vue.component('owncast-footer', {
props: {
appVersion: {
type: String,
default: "0.1",
},
},
template: `
<footer class="flex border-t border-gray-500 border-solid">
<footer class="flex">
<span>
<a href="https://github.com/gabek/owncast" target="_blank">About Owncast</a>
</span>
</span>
<span>Version {{appVersion}}</span>
</footer>
`,
});