Last active
September 19, 2021 17:05
-
-
Save JimYaaa/e4bbffe271b9df1d0a8b6821ce13361f to your computer and use it in GitHub Desktop.
vue 3 v-model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ChildComponent v-model="pageTitle" /> | |
// v-model 是下面寫法的語法糖: | |
<ChildComponent | |
:modelValue="pageTitle" | |
@update:modelValue="pageTitle = $event" | |
/> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment