屬性值代入 jsfiddle
<html>
<head>
    <meta charset="utf-8">
    <title>屬性值代入</title>
</head>
<body>
<div id="app-2">
  <span v-bind:title="message">
    請在這邊停留幾秒
  </span>
</div>
</body>
<script src="vue.js"></script>
<script>
    new Vue({
        el: '#app-2',
        data: {
            message: '目前時間 ' + new Date()
        }
    })
</script>
</html>