This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Description
In CTextarea, the v-model configuration binds to inputValue and change. However, Vue's textarea component (which is in turn used by composing CInput) has a value prop.
So the following template does not work:
<CTextarea v-model="firstName"/>
while the following works:
<CTextarea :value="firstName" @change="(newValue) => (firstName = newValue)"/>
If I am not mistaking, the model declaration in CTextarea should be
model: {
prop: 'value',
event: 'change'
},
without any extra prop
Or am I wrong?