JSFiddle - React, Tailwind, and code Playground

by Slava Slava

HTML

<div id="app"></div>

JavaScript

var MyComponent = Vue.extend({
	el: '#app',
  template: '<div>my comp</div>'
})

new Vue({
  el: '#app',
  template: '<div>Hello from app <div v-el:comp></div>  </div>',
  created: function() {
  	console.log(this.$els.comp);
  }
});


// or, compile off-document and append afterwards: