Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 568 Bytes

指令.md

File metadata and controls

32 lines (20 loc) · 568 Bytes

v-ifv-show的区别

v-showv-if的区别是:

  • v-if的是不渲染
  • v-show是不显示,但页面中还是存在的。

v-model

<input type="text" :value="user.username" @input="user.username = $event.target.value" />

trim

v-model搭配使用,去掉两端空格

number

v-model搭配使用,字符串会转成数字

lazy

v-model搭配使用,失去焦点时触发

sync修饰符

:money.sync="total"
/* 上下等价 */
:money="total" v-on:update:money="total = $event"