Skip to content

Instantly share code, notes, and snippets.

@njwest
Last active April 10, 2019 06:37
Show Gist options
  • Save njwest/837a3c813dc0cbd370571c6de901e907 to your computer and use it in GitHub Desktop.
Save njwest/837a3c813dc0cbd370571c6de901e907 to your computer and use it in GitHub Desktop.
Passing data through as prop
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld :msg="message"/>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'app',
components: {
HelloWorld
},
data(){
return {
message: 'Hello World!'
}
}
}
</script>
// styles omitted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment