framwork ready, need to test the api access

This commit is contained in:
2021-01-18 16:51:36 +01:00
parent 6636ca21c2
commit 40bf13de53
267 changed files with 46809 additions and 4 deletions
+26
View File
@@ -0,0 +1,26 @@
import Vue from 'vue'
import Router from 'vue-router'
import Home from 'pages/Home'
import NotFound from 'pages/NotFound'
Vue.use(Router)
const routes = [
{
name: 'home',
path: '/',
component: Home
},
{
name: 'notfound',
path: '/404',
alias: '*',
component: NotFound
}
]
export default new Router({
mode: 'history',
routes
})