Fix Build-Error

Just like #111, i added three file-extensions in src/router.js to avoid the build-errors i struggled with.

Signed-off-by: Jonas <jotoeri@users.noreply.github.com>
This commit is contained in:
Jonas 2020-02-20 13:38:44 +01:00
parent b6f9be5c40
commit 8a714cc48f

View file

@ -26,9 +26,9 @@ import Vue from 'vue'
import Router from 'vue-router'
// Dynamic loading
const Create = () => import('./views/Create')
const List = () => import('./views/List')
const Results = () => import('./views/Results')
const Create = () => import('./views/Create.vue')
const List = () => import('./views/List.vue')
const Results = () => import('./views/Results.vue')
Vue.use(Router)
export default new Router({