RAGflow/management/web/src/layouts/components/Footer/index.vue

21 lines
428 B
Vue
Raw Normal View History

2025-03-28 22:45:42 +08:00
<script lang="ts" setup>
const VITE_APP_TITLE = import.meta.env.VITE_APP_TITLE
</script>
<template>
<footer class="layout-footer">
{{ VITE_APP_TITLE }} : https://github.com/zstar1003/ragflow-plus
</footer>
</template>
<style lang="scss" scoped>
.layout-footer {
width: 100%;
min-height: 50px;
display: flex;
align-items: center;
justify-content: center;
color: var(--el-text-color-placeholder);
}
</style>