mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 04:20:49 +08:00
29 lines
547 B
Vue
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>
|