美文网首页
HelloWorld

HelloWorld

作者: 栀心_d553 | 来源:发表于2020-02-03 20:09 被阅读0次
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>01_HelloWorld</title>
    </head>
    <body>
    
    <!--
        1. 引入Vue.js
        2. 创建Vue对象
            el : 指定根element(选择器)
            data : 初始化数据(页面可以访问)
        3. 双向数据绑定 : v-model
        4. 显示数据 : {{xxx}}
        5. 理解vue的mvvm实现
    -->
    
    <div id="app">
    <!--    将整个盒子交给el管理-->
        <input type="text" v-model = 'username'>
        <p>hello {{username}}</p>
    </div>
    
    <script type="text/javascript" src="js/vue.js"></script>
    <script type="text/javascript">
    const vm = new Vue({
      el: '#app',//el 表示元素 后面是选择器,表示是将哪个元素交给el去管理
      data: {//数据 mvvm里面的model
      username: 'Vue!'
      }
    })
    
    vm.username = 'kobe';
    
    </script>
    </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:HelloWorld

          本文链接:https://www.haomeiwen.com/subject/nzzcxhtx.html