Skip to content

Instantly share code, notes, and snippets.

@Panigale
Last active September 11, 2016 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Panigale/14fb6aa823acd199c53dddcb0406692c to your computer and use it in GitHub Desktop.
Save Panigale/14fb6aa823acd199c53dddcb0406692c to your computer and use it in GitHub Desktop.
<div id="parents">
<h3>子組件內容:</h3>
<child :message="parentsMessage"></child>
</div>
<script>
//定義子組件
Vue.component('child', {
props:['message'],
template: '<div>{{ message }}</div>'
})
//建立父組件
new Vue({
el: '#parents',
data:{
parentsMessage:'hello, my child'
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment