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

Vue.component('contact-us', {
	template: `
  	<div>
		  <h1>Contact Us</h1>
			<p>Please send an e-mail to: {{ email }}</p>
		</div>
  `
});

new Vue({
	el: '#app',
});