-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
I'm trying to use textarea in my component, but I can't type in text. Sometimes I was able to type one letter but nothing more. The same code but with b-form-input -works. I can type a text there but in textarea - can't
I'm using textarea in tabs:
<b-tab v-for="(item, index) in newItem" :key="item.code" :title="item.name" :active="!index">
<!--Input works-->
<b-form-input id="InfoInput"
type="text"
v-model="item.value.info">
</b-form-input>
<!--Text area does not work-->
<b-form-textarea id="countryInfo"
v-model="item.value.info"
:rows="3">
</b-form-textarea>
</b-tab>
OS: Ubuntu 16.4
Browser: Google Chrome
Version of Bootstrap-Vue: 2.0.0-rc.2
timchambers, belluzj, lnufnu, EKataskin, Preston-Landers and 8 more