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.

18 lines (17 loc) 487 B
<div id="app"> <h3>Example heading <b-badge ref="no_props">New</b-badge> </h3> <h4>Example heading <b-badge variant="primary">New</b-badge> </h4> <h5>Example heading <b-badge pill ref="badge_pill" variant="success">New</b-badge> </h5> <p v-for="variant in variants" :key="variant"> <b-badge :variant="variant" :ref="`badge_${variant}`">{{ variant }}</b-badge> </p> </div>