<input class="dispaly" type="text"v-model="item.title" v-focus>directives: { focus: { // 指令的定义 update: function (el,binding) { if (binding.value){ el.focus() } } }}
1 回答
红颜莎娜
TA贡献1842条经验 获得超12个赞
v-focus 你没有binding 任何东西啊,
<input class="dispaly" type="text"v-model="item.title" v-focus="item.title">
这样就可以了
添加回答
举报
0/150
提交
取消