JSFiddle - React, Tailwind, and code Playground

by Vikash Kumar Gupta

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/[email protected]/lib/index.js"></script>
<div id="app">
<template>
  <div class="block">
    <el-slider v-model="value10" :show-input-controls="false" show-input vertical height="200px">
    </el-slider>
  </div>
</template>
</div>

SCSS

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

Babel + JSX

var Main = {
    data() {
      return {
        value10: 0
      }
    }
  }
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')