手记

Vue自定义组件

Vue.extend 创建组件 Vue.component注册组件 使用组件.

例如:

<!DOCTYPE html>
<html>
<head> 
    <meta charset="utf-8"> 
    <script src="js/vue.js"></script>
</head>
<body>
    <div id="box1"> 
        <p>QQ:1697141690</p> 
        <ty></ty> <!--使用组件ty-->
    </div>  
<script>  
     var myty=Vue.extend({ //创建组件
         template:"<h1>写一段信息</h1>"  
     });  
     Vue.component("ty",myty);  //注册组件
         var vm=new Vue({    
         el:"#box1"  
     }); 
</script>
</body>
</html>


1人推荐
随时随地看视频
慕课网APP