JSFiddle - React, Tailwind, and code Playground

by OwenMelbz

JavaScript

// ES6 Module Import
import NewComponent from './components/NewComponent.vue';

// CommonJS Require
const NewComonent = require('./components/NewComponent.vue');

// You can name the component what ever you like
Vue.component('WhatEverNameIWant', NewComponent);