From b009dffe2e565babad253f92e40984fc65e7b00b Mon Sep 17 00:00:00 2001 From: fasttian Date: Mon, 13 Dec 2021 09:47:41 +0000 Subject: [PATCH] markdown newline --- docs/migration-to-vue3.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/migration-to-vue3.md b/docs/migration-to-vue3.md index 3914032f8..e36d944d8 100644 --- a/docs/migration-to-vue3.md +++ b/docs/migration-to-vue3.md @@ -150,6 +150,7 @@ ``` - v-model 的适配 + Vue3 的 v-model 相对 Vue2 来说 ,有了较大的改变。可以使用多 `model`,相应语法也有变化。[更多](https://v3.cn.vuejs.org/guide/migration/v-model.html#%E6%A6%82%E8%A7%88) - 修改 modelValue @@ -166,6 +167,7 @@ ``` - 事件返回 + 将之前的 `this.$emit('input')` 修改为 `this.$emit('update:modelValue')` ,vue3 中将省略这一步骤 自定义组件上的 v-model 相当于传递了 modelValue prop 并接收抛出的 update:modelValue 事件: -- GitLab