Vue
梦凝哲雪
这个作者很懒,什么都没留下…
展开
-
HTML界面利用 http-vue-loader.js以组件方式引入vue文件
http-vue-loader这套工具可提供开发者直接在网页环境中载入.VueFile,无需透过nodeJS环境编译,也不需要Build的步骤。在index的mounted中无法访问引入的组件但是在methods通过事件可以操作组件的数据。用法很简单,首先在网页上载入Vue与http-vue-loader,...原创 2022-07-18 17:19:30 · 4359 阅读 · 2 评论 -
Vue中v-for必须在vue实例对应元素下的子元素中循环渲染数据
异常信息Cannot use v-for on 1 stateful componentroot element because it renders multiple elements翻译大意:不能在根元素(root element)使用 v-for,因为v-for是个循环体呈现多个元素,v-for在根元素上导致无法渲染。错误代码:<div id="app" v-for="num in arr"> {{num }}</div>解决方案:v-for 循环原创 2022-04-20 21:28:37 · 730 阅读 · 0 评论 -
Vue错误记录
1、组件渲染函数中可能有一个无限更新循环[Vue warn]: You may have an infinite update loop in a component render function.(found in <Root>)原因:事件调用方式写错 @写错冒号:@click=“lost(index)” 写错成 :click="lost(index)"2、...原创 2020-08-27 21:44:36 · 317 阅读 · 0 评论