scrimba
Vue.js for Beginners
Vue.js Tutorial: Component Props
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Vue.js Tutorial: Component Props
AboutCommentsNotes
Vue.js Tutorial: Component Props
Expand for more info
index.js
run
preview
console
Vue.component('my-component', {
props: ['message'],
template: `<div>{{ message }}</div>`,
})

var app = new Vue({
el: '#app'
})
Console
Preview
311×85 (100%)
index.html
-3:32