vue.js 组件template

2017-06-05  本文已影响0人  飞鱼_JS

用template标签构建组件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue组件</title>
    <script src="js/vue.js"></script>
</head>
<body>
    <div id="app1">
        <my-com></my-com>
    </div>
    <template id="myCom">
        <div>这是template标签构建的组件</div>
    </template>
    <script>
//全局注册组件------------------------------------------------------------------
        Vue.component('my-com',{
            template: '#myCom'
        });
  var app1 = new Vue({
            el: '#app1'
        });
//局部注册组件--------------------------------------------------------------
        var app1 = new Vue({
            el: '#app1',
            components:{
                'my-com':{
                    template: '#myCom'
                }
            }
        });
    </script>
</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读