Skip to content

Instantly share code, notes, and snippets.

@antoniojps
Created May 9, 2017 22:48
Show Gist options
  • Save antoniojps/5a972175b8dbcf48306e23ccfb33c57a to your computer and use it in GitHub Desktop.
Save antoniojps/5a972175b8dbcf48306e23ccfb33c57a to your computer and use it in GitHub Desktop.
Props Vue JS - From https://vuejs.org/v2/guide/components.html Passar dados p um componente
// JS
Vue.component('child', {
// camelCase in JavaScript
props: ['myMessage'],
template: '<span>{{ myMessage }}</span>'
})
// HTML
<!-- kebab-case in HTML --> <child my-message="hello!"></child>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment