Vue-cli3 router.js configuration

1.router.js prompts for syntax errors

export default [
    {
        path: "/wel",
        component: Layout,
        redirect: "/wel/index",
        children: [
            {
                path: "index",
                name: "",
                component: () => import("@/page/wel"),
            },
        ],
    },
Syntax Error: SyntaxError: E:/WorkSpace/avue/src/router/views/index.js: Unexpected token (34:5)

  32 |                          // meta: { tag: false },tag
  33 |                          component: () =>
> 34 |                                  import("@/views/info/index"),
     |                                  ^
  35 |                  },
  36 |          ],
  37 |  },

solve

Sep.16,2021

component: () =>
    import('./views/info/index.vue'),


vue-cli3 vue.config.js summing up demo:

has the problem been solved?

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37f77-4d774.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37f77-4d774.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?