UNPKG

bootstrap-vue

Version:

BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.

23 lines (18 loc) 558 B
<div id="app"> <!-- default --> <b-form-textarea ref="default" v-model="text" placeholder="Type something"> </b-form-textarea> <br><br> <!-- rows and max-rows --> <b-form-textarea ref="rows" :rows="4" :max-rows="10"v-model="text" placeholder="Type something"> </b-form-textarea> <br><br> <!-- state --> <b-form-textarea ref="invalid" state="invalid" v-model="text" placeholder="Type something"> </b-form-textarea> <br><br> <!-- value --> <b-form-textarea ref="value" v-model="value"> </b-form-textarea> <br><br> </div>