JSFiddle - React, Tailwind, and code Playground

by OwenMelbz

HTML

<template class="component-x">
  {{ message }}
</template>

<script>
  module.exports = {
    data() {
      return {
        message: 'This is the default message for a .vue component'
      }
    }
  }

</script>

<style scoped>
  .component-x {
    color: teal;
    background: indigo;
  }

</style>