Dodano bloczki rozkazów S i N

This commit is contained in:
2022-06-09 00:19:53 +02:00
parent 35af97d354
commit 67cfb93cb0
12 changed files with 27840 additions and 7627 deletions
+2 -10
View File
@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
import Home from '../views/Home.vue'
const routes: Array<RouteRecordRaw> = [
@@ -7,18 +7,10 @@ const routes: Array<RouteRecordRaw> = [
name: 'Home',
component: Home
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
}
]
const router = createRouter({
history: createWebHashHistory(),
history: createWebHistory(),
routes
})