wait login

This commit is contained in:
2025-01-29 16:10:42 +01:00
parent 0d4f41eb60
commit a0b549487d
3 changed files with 6 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
<template>
<q-page class="flex flex-center">
<img alt="Quasar logo" src="~assets/quasar-logo-vertical.svg" style="width: 200px; height: 200px">
<q-btn color="primary" label="Primary" @click="registrar" />
<q-btn color="primary" label="Registrar" @click="registrar" />
</q-page>
</template>

1
src/pages/LoginPage.vue Normal file
View File

@@ -0,0 +1 @@

View File

@@ -1,6 +1,10 @@
const routes = [
{
path: '/',
component: () => import('pages/LoginPage.vue')
},
{
path: '/index',
component: () => import('layouts/MainLayout.vue'),
children: [
{ path: '', component: () => import('pages/IndexPage.vue') }