Skip to content

Instantly share code, notes, and snippets.

@Ancientwood
Created March 4, 2021 11:25
Show Gist options
  • Save Ancientwood/8213c15172dffd76c0da5eafde333b89 to your computer and use it in GitHub Desktop.
Save Ancientwood/8213c15172dffd76c0da5eafde333b89 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>vue</title>
<script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="app">
<p>{{ message }}</p>
</div>
<script>
new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
},
methods: {
hello: function () {
this.message = 'Hello';
}
},
created(){
this.hello();
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment