feat: add auto reply (#49)

* feat: add auto reply

* feat: add auto reply

* feat: update readme

* feat: add auto reply
This commit is contained in:
Dream Hunter
2023-12-18 21:41:15 +08:00
committed by GitHub
parent af78248145
commit 95ae65dc03
14 changed files with 349 additions and 33 deletions
+5
View File
@@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
import Index from '../views/Index.vue'
import Settings from '../views/Settings.vue'
import Admin from '../views/Admin.vue'
const router = createRouter({
@@ -9,6 +10,10 @@ const router = createRouter({
path: '/',
component: Index
},
{
path: '/settings',
component: Settings
},
{
path: '/admin',
component: Admin