in laravel+vue "s project, give vue a lazy load using vue-router "s routing.
is in the configuration file of router. There is no problem with normal import
import Home from "./../js/views/home.vue"
- but just load
const Home = r => require.ensure([], () => r(require("./../js/views/home.vue")))
will report the above error. I don"t know why