From 844bd56a5bed1293329299c8b0562558a0d2d907 Mon Sep 17 00:00:00 2001
From: Kyomotoi <kyomotoiowo@gmail.com>
Date: Fri, 1 Oct 2021 08:56:42 +0800
Subject: =?UTF-8?q?=F0=9F=90=9B=E2=9A=A1=EF=B8=8F=F0=9F=94=A5=20=E6=9B=B4?=
 =?UTF-8?q?=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

修复:
  - `setu`、`saucenao`搜图时失败报错
更新:
  - 弃用`aiohttp`,改用`httpx`
删除:
  - 临时删除暂未完成的`console`
---
 .../console/atri-manege/src/router/index.js        | 40 ----------------------
 1 file changed, 40 deletions(-)
 delete mode 100644 ATRI/plugins/console/atri-manege/src/router/index.js

(limited to 'ATRI/plugins/console/atri-manege/src/router')

diff --git a/ATRI/plugins/console/atri-manege/src/router/index.js b/ATRI/plugins/console/atri-manege/src/router/index.js
deleted file mode 100644
index 480f5d0..0000000
--- a/ATRI/plugins/console/atri-manege/src/router/index.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import Vue from 'vue'
-import VueRouter from 'vue-router'
-
-Vue.use(VueRouter)
-
-const routes = [
-  {
-    path: '/',
-    name: '主页 | Home',
-    component: () => import('../views/Home.vue')
-  },
-  {
-    path: '/control',
-    name: '控制面板 | Control',
-    component: () => import('../views/Control.vue')
-  },
-  {
-    path: '/data',
-    name: '数据 | Data',
-    component: () => import('../views/Data.vue')
-  },
-  {
-    path: '/chat',
-    name: '聊天 | Chat',
-    component: () => import('../views/Chat.vue')
-  },
-  {
-    path: '/a-test',
-    name: '测试 | Test',
-    component: () => import('../views/Test.vue')
-  }
-]
-
-const router = new VueRouter({
-  mode: 'history',
-  base: process.env.BASE_URL,
-  routes
-})
-
-export default router
-- 
cgit v1.2.3