diff options
author | Kyomotoi <[email protected]> | 2021-10-01 08:56:42 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2021-10-01 08:56:42 +0800 |
commit | 844bd56a5bed1293329299c8b0562558a0d2d907 (patch) | |
tree | 0b121b4e85b42e9a83dd65639013215272bb6527 /ATRI/plugins/console/atri-manege/src/router/index.js | |
parent | a00308d801a0ce13f0f19f6c3984bbbe2e09f57b (diff) | |
download | ATRI-844bd56a5bed1293329299c8b0562558a0d2d907.tar.gz ATRI-844bd56a5bed1293329299c8b0562558a0d2d907.tar.bz2 ATRI-844bd56a5bed1293329299c8b0562558a0d2d907.zip |
🐛⚡️🔥 更新
修复:
- `setu`、`saucenao`搜图时失败报错
更新:
- 弃用`aiohttp`,改用`httpx`
删除:
- 临时删除暂未完成的`console`
Diffstat (limited to 'ATRI/plugins/console/atri-manege/src/router/index.js')
-rw-r--r-- | ATRI/plugins/console/atri-manege/src/router/index.js | 40 |
1 files changed, 0 insertions, 40 deletions
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 |