Initial commit

This commit is contained in:
root
2025-12-21 09:55:58 -05:00
committed by Sebastian Krupinski
commit 169b7b4c91
57 changed files with 10105 additions and 0 deletions

13
src/routes.ts Normal file
View File

@@ -0,0 +1,13 @@
const routes = [
{
name: 'mail-accounts',
path: '/accounts',
component: () => import('@/pages/AccountsPage.vue'),
meta: {
title: 'Mail Accounts',
requiresAuth: true
}
},
]
export default routes