Is it possible to do that?
Tried
components: {
Fibonacci: () => import('./Fibonacci.vue')
}
But Eslint warning about import (Parsing error: Unexpected token import).
What need to change?
upd:
new Vue({
components: {
Fibonacci: () => import('./Fibonacci.vue')
}
)}
eslint-plugin-vue?