vuejs / docs

📄 Documentation for Vue 3

Home Page:https://vuejs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to use v-model-with-arguments in jsx

SpringHgui opened this issue · comments

https://cn.vuejs.org/guide/components/v-model.html#modifiers-for-v-model-with-arguments

// .vue file
<MyComponent v-model:title.capitalize="myText">
// .tsxfile   error
<MyComponent v-model:title.capitalize={myText.value}>

image