Created
March 18, 2019 10:12
-
-
Save earth774/2a243f126ea260d69c40c5ba6c90bee4 to your computer and use it in GitHub Desktop.
props component vuejs
This file contains hidden or 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> | |
<meta charset="UTF-8"> | |
<title>Amiearth</title> | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
</head> | |
<body> | |
<div id="components-demo"> | |
<blog-post title="My journey with Vue"></blog-post> | |
<blog-post title="Blogging with Vue"></blog-post> | |
<blog-post title="Why Vue is so fun"></blog-post> | |
</div> | |
<script> | |
Vue.component('blog-post', { | |
props: ['title'], | |
template: '<h3>{{ title }}</h3>' | |
}) | |
new Vue({ | |
el: '#components-demo' | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment