@kr_ilya

В чем ошибка при сборке?

При выполнении команды npm run dev я получаю ошибку
5f4372bae795d514550418.png
package.json

{
  "name": "AlikAdmin",
  "version": "1.0.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "dev": "npm run serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "@babel/core": "^7.11.4",
    "@babel/preset-env": "^7.11.0",
    "babel-eslint": "^10.1.0",
    "chartist": "0.11.4",
    "eslint": "^7.7.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "eslint-plugin-vue": "^6.2.2",
    "node-sass": "^4.14.1",
    "sass-loader": "^9.0.3",
    "vue": "^2.6.12",
    "vue-chartist": "^2.3.1",
    "vue-meta": "^2.4.0",
    "vuetify": "^2.3.9"
  },
  "devDependencies": {
    "@mdi/font": "^5.5.55",
    "@vue/cli-plugin-babel": "^4.5.4",
    "@vue/cli-plugin-eslint": "^4.5.4",
    "@vue/cli-service": "^4.5.4",
    "@vue/eslint-config-standard": "^5.1.2",
    "axios": "^0.20.0",
    "material-design-icons-iconfont": "^5.0.1",
    "stylus": "^0.54.8",
    "stylus-loader": "^3.0.2",
    "vue-analytics": "^5.22.1",
    "vue-i18n": "^8.21.0",
    "vue-router": "^3.4.3",
    "vue-template-compiler": "^2.6.12",
    "vuex": "^3.5.1",
    "vuex-router-sync": "^5.0.0"
  }
}


babel.config.json
module.exports = {
  presets: [
    '@vue/app',
    "@babel/preset-env"
  ]
}

.eslintrc.js

module.exports = {
  root: true,
  env: {
    node: true
  },
  'extends': [
    'standard',
    'plugin:vue/recommended'
  ],
  rules: {
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  },
  parserOptions: {
    parser: 'babel-eslint'
  }
}


Часть файла src/router/paths.js
{
    path: '/',
    meta: {
      name: '',
      requiresAuth: false
    },
    component: () => import(`@/views/LoginHome.vue`),
      // redirect if already signed in
    beforeEnter: (to, from, next) => {
      if (store.getters.authorized) {
        next('/dashboard')
      } else {
        next()
      }
    },
    children: [
      {
        path: '',
        component: () => import(`@/components/LoginForm.vue`)
      }
    ]
  },
  // add any extra routes that you want rendered in the dashboard as a child below. Change toolbar names here
  {
    path: '/dashboard',
    meta: {
      name: 'Dashboard View',
      requiresAuth: true
    },
    component: () => import(`@/views/DashboardView.vue`),


38 строка это
component: () => import(`@/views/LoginHome.vue`),
Если её убрать, ошибка будет ссылаться на подобную строку ниже, т.е
component: () => import(`@/components/LoginForm.vue`)


Как поичнить?
  • Вопрос задан
  • 63 просмотра
Решения вопроса 1
@kr_ilya Автор вопроса
В функциях вида
component: () => import(`@/views/LoginHome.vue`),
Для передачи аргумента нужно использовать одинарные кавычки ( ' ) вместо ( ` )
Ответ написан
Комментировать
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы