From 740d2938f55177821faa008d1fd49d8f017e8e53 Mon Sep 17 00:00:00 2001 From: m1m1sha <18262227804@163.com> Date: Sun, 5 May 2024 23:13:39 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=88=20perf:=20=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- easytier-gui/src/App.vue | 259 +-------------------------- easytier-gui/src/layouts/default.vue | 3 + easytier-gui/src/pages/index.vue | 252 ++++++++++++++++++++++++++ easytier-gui/src/typed-router.d.ts | 23 +++ 4 files changed, 280 insertions(+), 257 deletions(-) create mode 100644 easytier-gui/src/layouts/default.vue create mode 100644 easytier-gui/src/pages/index.vue create mode 100644 easytier-gui/src/typed-router.d.ts diff --git a/easytier-gui/src/App.vue b/easytier-gui/src/App.vue index 4f9a60f..6d11557 100644 --- a/easytier-gui/src/App.vue +++ b/easytier-gui/src/App.vue @@ -1,258 +1,3 @@ - - - - - - - - - \ No newline at end of file + + \ No newline at end of file diff --git a/easytier-gui/src/layouts/default.vue b/easytier-gui/src/layouts/default.vue new file mode 100644 index 0000000..6d11557 --- /dev/null +++ b/easytier-gui/src/layouts/default.vue @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/easytier-gui/src/pages/index.vue b/easytier-gui/src/pages/index.vue new file mode 100644 index 0000000..1e241a4 --- /dev/null +++ b/easytier-gui/src/pages/index.vue @@ -0,0 +1,252 @@ + + + + + + + + + + \ No newline at end of file diff --git a/easytier-gui/src/typed-router.d.ts b/easytier-gui/src/typed-router.d.ts new file mode 100644 index 0000000..6d6767c --- /dev/null +++ b/easytier-gui/src/typed-router.d.ts @@ -0,0 +1,23 @@ +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// Generated by unplugin-vue-router. ‼️ DO NOT MODIFY THIS FILE ‼️ +// It's recommended to commit this file. +// Make sure to add this file to your tsconfig.json file as an "includes" or "files" entry. + +declare module 'vue-router/auto-routes' { + import type { + RouteRecordInfo, + ParamValue, + ParamValueOneOrMore, + ParamValueZeroOrMore, + ParamValueZeroOrOne, + } from 'unplugin-vue-router/types' + + /** + * Route name map generated by unplugin-vue-router + */ + export interface RouteNamedMap { + '/': RouteRecordInfo<'/', '/', Record, Record>, + } +}