mirror of
https://github.com/simon987/music-graph-ui.git
synced 2025-04-10 14:06:41 +00:00
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
import HelloWorld from '@/components/HelloWorld'
|
|
|
|
Vue.use(Router)
|
|
|
|
export default new Router({
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'HelloWorld',
|
|
component: HelloWorld
|
|
}
|
|
]
|
|
})
|