JSFiddle - React, Tailwind, and code Playground

by Bo Andersen

HTML

<script src="https://unpkg.com/vue/dist/vue.js"></script>

<div id="app">
  <contact-us></contact-us>
</div>

JavaScript

var contactUs = {
	data: function() {
  	return {
    	email: '[email protected]'
    };
  },
	template: `
  	<div>
		  <h1>Contact Us</h1>
			<p>Please send an e-mail to: {{ email }}</p>
		</div>
  `
};

new Vue({
	el: '#app',
  components: {
  	'contact-us': contactUs
  }
});