처음 에러
node_modules/vue-router 관련 에러가 발생
WARNING Compiled with 17 warnings 11:40:21 PM
warning in ./node_modules/vue-router/dist/vue-router.esm-bundler.js
"export 'computed' was not found in 'vue'
warning in ./src/main.js
"export 'createApp' was not found in 'vue'
warning in ./node_modules/vue-router/dist/vue-router.esm-bundler.js
"export 'defineComponent' was not found in 'vue'
아래 방법으로 조치하였더니 문제가 변경됨
You should uninstall the current vue version and install the new one :
npm uninstall vue -S
then
npm install vue@next -S
새로운 에러
warning in ./src/main.js
"export 'default' (imported as 'Vue') was not found in 'vue'
구글링해보니 vue3에서는 export default를 더이상 사용하지 않는다고 하는데
vue2문법이라고... 현재 강의는 vue3를 기반으로 하는데, 그러면 어떻게 변경해야하는지 궁금합니다.