Quantcast
Channel: 一言多いプログラマーの独り言
Viewing all articles
Browse latest Browse all 846

Vue.jsで、属性を束縛(バインディング)

$
0
0
Vue.jsで、属性を束縛(バインディング)です。これで、どうして浮いて表示されるのか、よくわからないんですよね。まあ、こういうものだと思って、納得しましょう。


<div id="app-2">
<span v-bind:title="message">
ここにマウスを乗せると?
</span>
</div>

var app2 = new Vue({
el: '#app-2',
data: {
message: 'このページをロードしたのは、' + new Date().toLocaleString()
}
})

参考サイト
はじめに(Vue.js)

Viewing all articles
Browse latest Browse all 846

Trending Articles