first commit

This commit is contained in:
Leonardo
2026-02-18 22:36:45 -03:00
parent ec6b6ef53a
commit 676042268b
122 changed files with 26354 additions and 1615 deletions
+15
View File
@@ -0,0 +1,15 @@
// src/router/routes.billing.js
import AppLayout from '@/layout/AppLayout.vue'
export default {
path: '/upgrade',
component: AppLayout,
meta: { requiresAuth: true },
children: [
{
path: '',
name: 'upgrade',
component: () => import('@/views/pages/billing/UpgradePage.vue')
}
]
}