VUE实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Vue实例</title>
    <script src="./vue.js"></script>
</head>
<body>
    <div id="root">
        <div @click="handleClick">
        {{message}}
        </div>
        <item></item>
    </div>
    <script>
        Vue.component('item',{
           template:'<div>你好 世界</div>'
        });


        var vm = new Vue({
          el:'#root',
          data:{
              message:'hello world'
          },
            methods:{
              handleClick:function () {
                  alert("hello world")
              }
            }
        })
    </script>
</body>
</html>

 

posted @ 2018-11-13 12:09  alexbiu  阅读(125)  评论(0编辑  收藏  举报