鼠标悬停
- html
<div id="app">
<span v-bind:title="message">
鼠标悬停几秒钟查看此处动态绑定的提示信息!
</span>
</div>
- js
<script>
// 初始化数据
window.onload = function () {
var vue = new Vue({
el: '#app',
data: {
message: '页面加载于 ' + new Date().toLocaleString()
}
});
};
</script>