admin 发表于 2019-8-6 16:08:30

Vuejs 属性绑定和双向数据绑定




<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Event Bind</title>
    <script src="./vue.js"></script>
</head>

<body>
    <div id="root">
      <div :title="title">Hello World</div>
      <!-- v-bind: is the same as : -->
      <!-- v-model -->
      <input type="text" v-model="content" />
      <div>{{content}}</div>
    </div>
    <script>
      new Vue(
            {
                el: root,
                data: {
                  title: "this is hello world",
                  content: "this is content"
                },
                methods: {

                }
            }
      )
    </script>
</body>

</html>


页: [1]
查看完整版本: Vuejs 属性绑定和双向数据绑定