dashboard
repositories
filestore
activity
search
login
xiewanyan
/
dapp-wallet
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
gx
queenwuli
2022-04-15
f5a6785ae5a1d534047a1d35b3c43e6e8665acac
[~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