LoginSignup
2
1

More than 5 years have passed since last update.

Laravel 5.7 + vue 2.5.3 で画面が真っ白になる

Posted at

before

Vue.use(VueRouter)
const router = new VueRouter({
    mode: 'history',
    routes: [
        { path: '/', component: require('./components/Hoge.vue') },
    ]
})

after

const router = new VueRouter({
    mode: 'history',
    routes: [
        { path: '/', component: require('./components/Hoge.vue').default },
    ]
}))

参考

[Vue warn]: Failed to mount component: template or render function not defined in Webpack 4

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1