feat: meta tags

This commit is contained in:
Jannat Patel
2024-03-28 16:20:53 +05:30
parent e6d3819092
commit 3525e4c90b
264 changed files with 103 additions and 96669 deletions

View File

@@ -2,11 +2,13 @@ import { createRouter, createWebHistory } from 'vue-router'
import { usersStore } from './stores/user'
import { sessionStore } from './stores/session'
let defaultRoute = '/courses'
const routes = [
{
path: '/',
name: 'Home',
component: () => import('@/pages/Home.vue'),
redirect: {
name: 'Courses',
},
},
{
path: '/courses',
@@ -97,7 +99,7 @@ const routes = [
]
let router = createRouter({
history: createWebHistory('/learning'),
history: createWebHistory('/lms'),
routes,
})