Minor corrections

This commit is contained in:
2023-11-07 17:50:03 -05:00
parent b14646bfb1
commit ab8e50991e
2 changed files with 5 additions and 5 deletions

View File

@@ -9,12 +9,12 @@ client
const account = new Account(client);
// // TODO: Auto-logout on session deletion / expiry
// if (user.value) {
// TODO: Auto-logout on session deletion / expiry
// account.get().then(
// client.subscribe('account', (response) => {
// console.log(response);
// });
// }
// })
// );
// export default boot(({ app, urlPath, redirect }) => {
// });

View File

@@ -4,11 +4,11 @@ const routes: RouteRecordRaw[] = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'),
name: 'index',
children: [
{
path: '',
component: () => import('pages/IndexPage.vue'),
name: 'index',
},
],
},