feat: add footbar for login and register page, add send button for chat page

This commit is contained in:
RockYang
2023-06-16 13:57:05 +08:00
parent 6a2122e1ac
commit 3347b4c990
5 changed files with 93 additions and 34 deletions

View File

@@ -1,13 +1,34 @@
<template>
<footer>
Powered by [ChatGPT-Plus-V3](https://github.com/yangjian102621/chatgpt-plus)
Copyright|极客学长
</footer>
<div class="container">
<div class="footer">
Powered by {{author}} @
<el-link type="primary" href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">{{title}}</el-link>
</div>
</div>
</template>
<script setup>
import {ref} from "vue";
const title = ref('ChatGPT-Plus-V3')
const author = ref('极客学长')
</script>
<style scoped lang="stylus">
.container {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
display flex;
justify-content center
.footer {
max-width 400px;
text-align center;
font-size 14px;
padding 20px;
width 100%
}
}
</style>