IT/오늘의 질문

[vue] 에러 해결방법 Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as <script>, as they will not be parsed

아라니나노 2019. 5. 2. 17:51
반응형

vue import 후 위와 같은 warn이 뜬다면

 

vue.js -> vue.min.js 로 변경 후 import 하면 된다.

 

변경 전

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>

변경  후

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.min.js"></script>

 

반응형