Uncaught ReferenceError: экспорт не определен в @vue/cli 5.0.0-beta.3, vue 3.2.8, element-plus 1.1.0-beta.8?

Я использую @vue / cli 5.0.0-beta.3, vue 3.2.8 с element-plus 1.1.0-beta.8. Вот мой пример проекта: https://github.com/linrongbin16/financial_tools_app3

Я импортирую CDN element-plus 1.1.0-beta.8 в свой index.html файл, но он сообщает об ошибке:

      Uncaught ReferenceError: exports is not defined

Я понятия не имею, как это исправить, и имеет ли это какое-либо отношение к моему tsconfig.json настройки:

      {
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "strict": true,
    "jsx": "preserve",
    "importHelpers": true,
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "useDefineForClassFields": true,
    "sourceMap": true,
    "baseUrl": ".",
    "types": [
      "webpack-env"
    ],
    "paths": {
      "@/*": [
        "src/*"
      ]
    },
    "lib": [
      "esnext",
      "dom",
      "dom.iterable",
      "scripthost"
    ]
  },
  "include": [
    "src/**/*.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "tests/**/*.ts",
    "tests/**/*.tsx"
  ],
  "exclude": [
    "node_modules"
  ]
}

0 ответов

Другие вопросы по тегам