Files
nexusphp/admin/src/components/Footer.vue
xiaomlove d651762c1b Dashboard
2021-05-17 21:07:50 +08:00

29 lines
547 B
Vue

<template>
<div class="footer">
<div class="left">Powered by <a target="_blank" href="https://nexusphp.org/">NexusPHP</a></div>
<div class="right" v-if="version">
Version: {{version}}
</div>
</div>
</template>
<script>
export default {
name: 'Footer',
props: {
version: String
}
}
</script>
<style scoped>
.footer {
height: 50px;
border-top: 1px solid #e9e9e9;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
</style>