ionic ui componentで、inputのデータバインドがうまくいかない時(v-modelが効いてない時)
覚書です。
<ion-item>
<ion-label position="stacked">名前</ion-label>
<ion-input v-model="petName"></ion-input>
</ion-item>
これを
こうすると動く
<ion-item>
<ion-label position="stacked">名前</ion-label>
<ion-input :value="petName" @input="petName = $event.target.value"></ion-input>
</ion-item>
参照元🙏:
https://www.koatech.info/blog/vue-databinding-ionic/
https://github.com/vuejs/vue/issues/7830
Author And Source
この問題について(ionic ui componentで、inputのデータバインドがうまくいかない時(v-modelが効いてない時)), 我々は、より多くの情報をここで見つけました https://qiita.com/AyakoKataoka/items/a6248077e4b0b30c1668著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .