Files
vue3-tutorial/docs/chapter5/02_其他新API.md
2020-11-13 14:28:34 +08:00

524 B
Raw Blame History

2. 其他新的API

全新的全局API

  • createApp()
  • defineProperty()
  • defineAsyncComponent()
  • nextTick()

将原来的全局API转移到应用对象

  • app.component()
  • app.config()
  • app.directive()
  • app.mount()
  • app.unmount()
  • app.use()

模板语法变化

  • v-model的本质变化
    • propvalue -> modelValue
    • eventinput -> update:modelValue
  • .sync修改符已移除, 由v-model代替
  • v-if优先v-for解析