JSFiddle - React, Tailwind, and code Playground

by ozzon91

HTML

<div id="el">
  <input type="text" v-is-custom name="" id="">
</div>

JavaScript

Vue.directive('is-custom', {
	inserted: function (el) {
    let nodediv = document.createElement('div');
    let elCopy = el.cloneNode(true);
    nodediv.appendChild(elCopy);
    el.parentNode.replaceChild(nodediv,el);
  },
});

new Vue({
	el: '#el'
});