Skip to content

Instantly share code, notes, and snippets.

@gogl92
Created August 7, 2021 21:09
Show Gist options
  • Save gogl92/ad62f3752a51da1c1153b3d9626bb8e6 to your computer and use it in GitHub Desktop.
Save gogl92/ad62f3752a51da1c1153b3d9626bb8e6 to your computer and use it in GitHub Desktop.
Vue Hello World!
<script src="https://unpkg.com/vue"></script>
<div id="app">
{{ hello }}
</div>
<script>
const app = new Vue({
el: '#app',
data() {
return {
hello: 'Hello Vue!'
}
}
});
</script>
body {
padding: 50px;
font-size: 48px;
}
.status {
color: tomato;
}
ul li {
font-size: 10px;
font-family: 'Courier'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment