feat: AutoSSL certificate management tool with Web UI

This commit is contained in:
2026-05-12 14:55:10 +08:00
commit 1775d4b4fc
28 changed files with 2357 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createRouter, createWebHistory } from 'vue-router'
import Dashboard from '../views/Dashboard.vue'
import CertList from '../views/CertList.vue'
import CertCreate from '../views/CertCreate.vue'
const router = createRouter({
history: createWebHistory(),
routes: [
{ path: '/', name: 'Dashboard', component: Dashboard },
{ path: '/certificates', name: 'CertList', component: CertList },
{ path: '/create', name: 'CertCreate', component: CertCreate },
],
})
export default router