skeleton.client.src.router.index.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vue Show documentation
Show all versions of vue Show documentation
A profile for creating Grails applications with Vue.js
import Vue from 'vue'
import Router from 'vue-router'
import Welcome from '@/components/Welcome'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Welcome',
component: Welcome
}
]
})
© 2015 - 2024 Weber Informatics LLC | Privacy Policy