Skip to content

Instantly share code, notes, and snippets.

@Riduidel
Created March 21, 2018 07:53
Show Gist options
  • Select an option

  • Save Riduidel/4eaa7f3a3c95b58d54aaf60e7b82eaed to your computer and use it in GitHub Desktop.

Select an option

Save Riduidel/4eaa7f3a3c95b58d54aaf60e7b82eaed to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<meta>
<meta charset="UTF-8">
<title>Hello World in Vue.js</title>
</meta>
<body>
<div id="hello-world-app">
<h1>{{ msg }}</h1>
</div>
<script
src="//cdnjs.cloudflare.com/ajax/libs/vue/2.1.6/vue.min.js">
</script>
<script>
new Vue({
el: "#hello-world-app",
data() {
return {
msg: "Hello World!"
}
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment