vue js github code example
Example 1: vuejs
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
Example 2: vuejs
Hover your mouse over me for a few seconds
to see my dynamically bound title!
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
Hover your mouse over me for a few seconds
to see my dynamically bound title!