Skip to content

Instantly share code, notes, and snippets.

@chrisdias
Last active January 23, 2020 19:33
Show Gist options
  • Save chrisdias/84b7978c397975a51ab416139754c22d to your computer and use it in GitHub Desktop.
Save chrisdias/84b7978c397975a51ab416139754c22d to your computer and use it in GitHub Desktop.
Vue.js w/TypeScript
<div id="app">
<h1>{{ header }}</h1>
<p>Feel free to edit theeeee HTML, JavaScript and CSS in this playground. The preview will update in real-time, so that
you can visually explore your ideas.</p>
<button @click="sayHi">Saysssssss Hi! <span class="fa fa-heart" /></button>
</div>
{
"scripts": [
"vue"
],
"styles": []
}
const header: string = "Hi, I'm GistPad 👋";
new Vue({
el: "#app",
data: {
header
},
methods: {
sayHi() {
alert("Hi wow!!!!!!");
}
}
});
body {
background-color: rgb(255, 170, 204);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment