JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/[email protected]/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
  <mt-button @click="handleClick">Click</mt-button>
</div>

SCSS

@import url("//unpkg.com/[email protected]/lib/style.css");

Babel + JSX

var Main = {
  methods: {
    handleClick() {
      this.$messagebox({
        title: 'title',
        message: '<i class="a">message</i>'
      })
    }
  }
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')