feat: AutoSSL certificate management tool with Web UI
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user