JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue"></script>
<div id="first" v-html="type"></div>
<div id="second" v-html="type"></div>
JavaScript
var firstInstance = new Vue({
el: '#first',
data: {
type: 'cat'
}
});
var secondInstance = new Vue({
el: '#second',
data: {
type: ''
},
mounted() {
this.type = firstInstance.type;
}
});