JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<my-cmp></my-cmp>
<hr>
<my-cmp></my-cmp>
</div>
JavaScript
Vue.component('my-cmp', {
data: function(){
return{
status: 'critical'
}
},
template: '<p>status: {{ status }} '
})
new Vue({
el: '#app'
})