[Vuejs]-Vue 2.6 with Rollup: import component by variable name

0👍

Try explicitly loading the default export:

var item = {
  name: name,
  path: path,
  component: async () => (await import("../pages/reports/"+filename+".vue")).default
}

Leave a comment