JSFiddle - React, Tailwind, and code Playground
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>
<h2>Contact Us</h2>
<p>Please send an e-mail to: {{ email }}</p>
</div>
`
};
new Vue({
el: '#app',
components: {
contactUs: contactUs
}
});