21_局部注册组件

2018-02-10  本文已影响0人  CHENPEIHUANG
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <div id="app">
            <my-component></my-component>
        </div>
    </head>
    <body>
        <script src="js/vue.js"></script>
        <script>
            var vm = new Vue({
                el:"#app",
                components:{
                    'my-component':{
                        template:"<h1>Hello<my-tab></my-tab></h1>"
                    }
                }
            })
        </script>
    </body>
</html>

上一篇下一篇

猜你喜欢

热点阅读