vue局部组件的使用

Posted shannen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue局部组件的使用相关的知识,希望对你有一定的参考价值。

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <title>vue组件的使用</title>
    <style>
        body{
            color:burlywood;
        }
        .header{
            width: 100%;
            height: 40px;
            background-color: #333;
            line-height: 40px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div id=‘app‘></div>
    <script>
        // 1.声明组件
        var Vheader = {
            template : `
                <div class=‘header‘>
                    头部区域
                </div>
            `,
        }
        new Vue({
            el:‘#app‘,
            data(){
                return{

                }
            },
            // 3.使用组件
            template:`
                <Vheader/>
            `,
            // 2.挂载组件
            components:{
                Vheader,
            }
        })
    </script>
</body>
</html>

  

以上是关于vue局部组件的使用的主要内容,如果未能解决你的问题,请参考以下文章

Vue学习-组件的基本使用(局部组件)

vue.js中的全局组件和局部组件

vue.js 组件-全局组件和局部组件

vue中注册组件

vue组件

vue中的组件