码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 组件

时间:2017-10-12 15:40:46      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:rip   head   body   har   title   log   logs   utf-8   com   

1、组件的创建

<!doctype html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>组件的创建</title>
    <script src="js/vue.js"></script>
 </head>
 <body>
  <div id="container">
        <p>{{msg}}</p>
<!--组件的调用  -->
    <my-component></my-component>
    </div>
    <script>
            //组件的创建
        Vue.component(/*组件名*/"my-component",/*对象*/{
            //template属性    
            template:
            `
                <h1>林垃圾</h1>
            `
        }) 
        new Vue({
            el:"#container",
            data:{
                msg:"hello Vue"
            }
        })
    </script>
 </body>
</html>

 

Vue 组件

标签:rip   head   body   har   title   log   logs   utf-8   com   

原文地址:http://www.cnblogs.com/wangruifang/p/7656107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!