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>
原文地址:https://www.cnblogs.com/xuyxbiubiu/p/9951506.html