mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-28 01:53:53 +08:00
合并样式及功能
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div v-if="visible" class="message">
|
||||
{{message}}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Footer',
|
||||
props: {
|
||||
visible: { type: Boolean, required: true },
|
||||
message: { type: String, required: false, default: '©2025 xiaozhi-esp32-server' }
|
||||
},
|
||||
data() {
|
||||
return { }
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.message {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
margin-top: auto;
|
||||
padding-top: 30px;
|
||||
color: #979db1;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user