Skip to content

Instantly share code, notes, and snippets.

@earth774
Created March 18, 2019 10:12
Show Gist options
  • Save earth774/2a243f126ea260d69c40c5ba6c90bee4 to your computer and use it in GitHub Desktop.
Save earth774/2a243f126ea260d69c40c5ba6c90bee4 to your computer and use it in GitHub Desktop.
props component vuejs
<!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