vue踩坑日记

1. vue跳转的时候, 使用route-link标签进行链接填写

<router-link to="/helloWorld">点击跳转</router-link>

 

2. vue是去dom化的, 如果强行使用jquery进行事件操作可以用on实现

$(document).on('click', 'className', function(){})

 

3. 光标离开事件可以使用ref获取input值

// html
<input type="text" name="title" required @blur="blurFunction" ref="refName" />
// vue
let value = this.$refs.refName.value;

 

4. 新增的数据需要通过Vue.set才能实行双向绑定

Vue.set('属性', '键', '值')
原文链接:,转发请注明来源!
评论已关闭。