新增免费版 ChatGPT

This commit is contained in:
RockYang
2023-04-18 17:56:20 +08:00
parent 5e0bfc778b
commit 8733cdb981
4 changed files with 706 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ import NotFound from './views/404.vue'
import TestPage from './views/Test.vue'
import Home from "@/views/Home.vue";
import './utils/prototype'
import ChatFree from "@/views/ChatFree.vue";
const routes = [
{
@@ -31,6 +32,11 @@ const routes = [
title: '测试页面'
}
},
{
name: 'free', path: '/free', component: ChatFree, meta: {
title: 'ChatGPT 免费版'
}
},
{
name: 'NotFound', path: '/:all(.*)', component: NotFound, meta: {
title: '页面没有找到'