美文网首页
03-Vue全局组件和局部组件

03-Vue全局组件和局部组件

作者: 木易先生灬 | 来源:发表于2018-09-22 23:11 被阅读0次

    01-全局组件

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title></title>
        <!-- vue.min.js -->
        <script src="./js/vue.min.js"></script>
    </head>
    <body>
    
        <!-- dom -->
        <div id="app">
            <!-- 使用全局组件 -->
            <my-component1></my-component1>
            <my-form></my-form>
        </div>
    
        <!-- <div id="app1">
            <my-component1></my-component1>
        </div> -->
        
        <script>
            // 注册全局组件
            Vue.component('my-component1', {
                template: `<div>
                            <h1>这是我的第一个全局组件 !</h1> 
                            <div>这是我的第一个全局组件aaa !</div>
                        </div>
                            `
            })
            // 注册全局组件
            Vue.component('my-form', {
                template: `<form>
                            <input type="text" /> <br />
                            <input type="text"/> <br />
                            <input type="text"/> <br />
                            <input type="text"/>
                        </form>
                            `
            })
    
            // 创建vue实例
            new Vue({
                el: '#app',
            })
    
            // new Vue({
            //     el: '#app1',
            // })
            
        </script>
    </body>
    </html>
    

    02-局部组件

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title></title>
        <!-- vue.min.js -->
        <script src="./js/vue.min.js"></script>
    </head>
    <body>
    
        <!-- dom -->
        <div id="app">
        <my-component1></my-component1>
        <my-component2></my-component2>
        </div>
        
        <div id="app1">
            <my-component1></my-component1>
        </div>
    
        <script>
        
            // 创建vue实例
            new Vue({
                el: '#app',
                data: {},
                components: {    // 注册局部组件
                    'my-component1': {
                        template: `<h1>我是局部组件1</h1>`
                    },
                    'my-component2': {
                        template: `<h2>我是局部组件2</h2>`
                    }
                }
            })
            
        </script>
    
    </body>
    </html>

    相关文章

      网友评论

          本文标题:03-Vue全局组件和局部组件

          本文链接:https://www.haomeiwen.com/subject/fiffoftx.html