vue报错警告,
- [Vue warn]: Error compiling template:
- 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.
复制代码
原因为<script>标签必须在<div id="app"></div>之外。在内部会报错。
================================
vue报错警告,
[code][Vue warn]: Error compiling template:
Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as
原因:
原因是你新建VUE实例的代码放在了被绑定的组件
,将’<‘script>标签写到’<div id="app"></div>’之外。
|