JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
  <template>
    <el-date-picker v-model="value6" type="daterange" placeholder="选择日期范围">
    </el-date-picker>
  </template>
</div>

SCSS

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

Babel + JSX

var Main = {
    data() {
      return {
        value6: []
      };
    }
  };
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')