mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-07 09:07:23 +01:00
41 lines
1 KiB
Vue
41 lines
1 KiB
Vue
<template>
|
|
<footer>
|
|
Developed by <a :href="authorUrl">{{authorName}}</a>.
|
|
Licensed under <a :href="licenseUrl">{{license}}</a>
|
|
{{ showCopyright? '©': '' }} {{date}}.
|
|
Get the <a :href="repoUrl">Source Code</a>.
|
|
</footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Footer',
|
|
props: {
|
|
authorName: { type: String, default: 'Alicia Sykes' },
|
|
authorUrl: { type: String, default: 'https://aliciasykes.com' },
|
|
license: { type: String, default: 'MIT' },
|
|
licenseUrl: { type: String, default: 'https://gist.github.com/Lissy93/143d2ee01ccc5c052a17' },
|
|
date: { type: String, default: `${new Date().getFullYear()}` },
|
|
showCopyright: { type: Boolean, default: true },
|
|
repoUrl: { type: String, default: 'https://github.com/lissy93/panel' },
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped lang="scss">
|
|
|
|
footer {
|
|
padding: 0.5rem;
|
|
text-align: center;
|
|
color: #5e6474;
|
|
}
|
|
|
|
footer a{
|
|
color: #5e6474;
|
|
&:hover {
|
|
color: #9F86FF;
|
|
}
|
|
}
|
|
|
|
</style>
|