Improve performance

This commit is contained in:
2025-11-06 12:07:44 +03:30
parent e1346156c8
commit eb9dff9f15

View File

@@ -1,4 +1,5 @@
import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router' import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
import HomeView from '@/views/HomeView.vue'
const routes: RouteRecordRaw[] = [ const routes: RouteRecordRaw[] = [
{ {
@@ -9,7 +10,7 @@ const routes: RouteRecordRaw[] = [
{ {
path: '/', path: '/',
name: 'home', name: 'home',
component: () => import('@/views/HomeView.vue'), component: HomeView,
}, },
{ {
path: '/list', path: '/list',