scrimba
Vue.js for Beginners
Vue.js Tutorial: Component Data
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 Data
AboutCommentsNotes
Vue.js Tutorial: Component Data
Expand for more info
index.js
run
preview
console
Vue.component('my-component', {
template: '<div> {{ message }} </div>'
})

new Vue({
el: '#app'
})


Console
Preview
311×85 (100%)
index.html
-5:19