programing

Vue는 생성자가 아닙니다.

goodsources 2022. 9. 11. 20:11
반응형

Vue는 생성자가 아닙니다.

사용하고 있습니다.webpack크롬으로 빌드하고 실행한 후 이 오류를 표시하면 어떻게 해결해야 할지 모르겠습니다.

코드는 매우 간단합니다.

여기에 이미지 설명 입력

여기에 이미지 설명 입력

여기에 이미지 설명 입력

{
  "devDependencies": {
    "babel-core": "^6.23.1",
    "babel-loader": "^6.3.2",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-es2015": "^6.22.0",
    "babel-runtime": "5",
    "css-loader": "^0.26.1",
    "html-webpack-plugin": "^2.28.0",
    "vue-hot-reload-api": "^2.0.9",
    "vue-html-loader": "^1.2.3",
    "vue-loader": "10.0.3",
    "vue-style-loader": "^2.0.0",
    "vue-template-compiler": "^2.1.10",
    "webpack": "^2.2.1",
    "webpack-dev-server": "^2.4.1"
  },
  "dependencies": {
    "vue": "^2.1.10"
  }
}

Vue는 해당 라이브러리에서 기본 내보내기이므로 이렇게 가져옵니다.

import Vue from 'vue'

런타임 빌드만 가져와야 합니다.Github의 이 코멘트는 설명합니다.

이것을 당신의 것에 넣으세요.webpack.config.js.

resolve: {
  alias: {
    vue: 'vue/dist/vue.js'
  }
}

언급URL : https://stackoverflow.com/questions/42343778/vue-is-not-a-constructor

반응형