No hay caso :c

This commit is contained in:
Daniel Cortés
2019-06-16 17:55:33 -04:00
parent 423a68eb3f
commit 36732b5810
2 changed files with 3 additions and 2 deletions

4
resources/js/app.js vendored
View File

@@ -7,7 +7,7 @@ import App from './views/App'
import Hello from './views/Hello'
import Home from './views/Home'
const router = VueRouter({
const router = new VueRouter({
mode: 'history',
routes: [
{
@@ -18,7 +18,7 @@ const router = VueRouter({
{
path: '/hello',
name: 'hello',
component: Hello
component: Hello,
},
],
});