fix: fixed bug for ssl websocket url

This commit is contained in:
RockYang
2023-06-16 10:00:05 +08:00
parent 15b77ad10a
commit b06a065d44
5 changed files with 16 additions and 19 deletions

View File

@@ -50,8 +50,8 @@ import {useRouter} from "vue-router";
const router = useRouter();
const title = ref('ChatGPT Plus 用户登录');
const username = ref('geekmaster');
const password = ref('12345678');
const username = ref(process.env.VUE_APP_USER);
const password = ref(process.env.VUE_APP_PASS);
onMounted(() => {
document.addEventListener('keyup', (e) => {