Created
March 4, 2021 11:25
-
-
Save Ancientwood/8213c15172dffd76c0da5eafde333b89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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