chore: update copyright information

This commit is contained in:
RockYang
2023-12-18 18:19:41 +08:00
parent a0a506a3c4
commit ff76e4bd89
6 changed files with 15 additions and 12 deletions

View File

@@ -1,16 +1,17 @@
<template>
<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 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 title = ref(process.env.VUE_APP_TITLE)
const author = ref('极客学长')
</script>
@@ -22,6 +23,7 @@ const author = ref('极客学长')
width: 100%;
display flex;
justify-content center
.footer {
max-width 400px;
text-align center;

View File

@@ -42,7 +42,7 @@
<a href="https://github.com/yangjian102621/chatgpt-plus" target="_blank">
<el-dropdown-item>
<i class="iconfont icon-github"></i>
<span>ChatGPT-Plus-V3</span>
<span>{{ sysTitle }}</span>
</el-dropdown-item>
</a>
<el-dropdown-item @click="showDialog = true">
@@ -84,6 +84,7 @@ import {httpGet} from "@/utils/http";
import {ElMessage} from "element-plus";
const message = ref(5);
const sysTitle = ref(process.env.VUE_APP_TITLE)
const avatar = ref('/images/user-info.jpg')
const donateImg = ref('/images/wechat-pay.png')
const showDialog = ref(false)