JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
  <el-menu mode="horizontal">
    <a href="https://www.ele.me" target="_blank"><el-menu-item index="1">订单管理</el-menu-item></a>
  </el-menu>
</div>

SCSS

@import url("//unpkg.com/[email protected]/lib/theme-chalk/index.css");

Babel + JSX

var Main = {}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')