dashboard
repositories
filestore
activity
search
login
xiewanyan
/
dapp-wallet
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
gx
queenwuli
2022-04-06
efaee5b0376cc6a94b53a52f7d81ececb77dcc8b
[~xiewanyan/dapp-wallet.git]
/
src
/
router
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {createRouter, createWebHistory} from 'vue-router'
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/',
component: () => import('@/pages/index')
}
]
})
export default router