개발/frontend (1) 썸네일형 리스트형 [vue 오류해결] Component provided template option but runtime compilation is not supported in this build of Vue 오류내용 [Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue... 해결방법 - 아래 방법 중 하나를 적용 1. vue createApp 하는 소스에서(vue cli로 생성한 프로젝트의 경우 main.js) import { createApp } from 'vue'; //위의 코드를 아래 코드로 대체 import { createApp } from 'vue/dist/vue.esm-bundler'; 2. vue.config.js에서 설정하는 방법 module.export = { runtimeCompiler: true, ... } 이전 1 다음