21 lines
428 B
Vue
21 lines
428 B
Vue
<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>
|