UNPKG
@lidhium/cli
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
micro-frontend cli packed with webpack
github.com/lidhishc/lidhiumjs
lidhishc/lidhiumjs
@lidhium/cli
/
dist
/
static
/
vue3-host
/
router
/
index.ts
17 lines
(13 loc)
•
300 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { RouteRecordRaw, createRouter, createWebHistory }
from
"vue-router"
; import Home
from
"@/components/Home.vue"
;
const
router
=
createRouter
({
history
:
createWebHistory
(),
routes
: [ {
path
:
"/"
,
name
:
"home"
,
component
: Home, }, ], }); export
default
router;