搜索

首页  >  问答  >  正文

javascript - vue2.0怎么用组件自定义标签实现组件的嵌套?

想用这种方式实现组件嵌套:

<p id="app">
    <app-content>
        <my-header></my-header>
        <my-footer></my-footer>
    </app-content>
</p>

目前实现的方式:是在app-content.vue中的template中嵌套的

index.html

<p id="app">
    <app-content> </app-content>
</p>

main.js

import Vue from '../node_modules/vue/dist/vue';
import app from './app.js';
new Vue(app);

app.js

import content from '../components/app-content.vue'
module.exports={
    el:"#app",
    data:{},
    components:{
        appContent:content
    }
};

app-content.vue

<template>
    <p id="content">
        <my-header></my-header>
        <my-footer></my-footer>
    </p>
</template>
<style>
    #content{
        height: 100vh;
        width: 100vw;
        background: rgb(240,240,240);
        position: relative;
    }
</style>
<script>
    import myHeader from './app-top.vue';
    import myFooter from './app-bottom.vue';
    export default {
        components:{
            myHeader,
            myFooter
        }
    }
</script>
扔个三星炸死你扔个三星炸死你2710 天前909

全部回复(1)我来回复

  • 天蓬老师

    天蓬老师2017-06-26 10:52:58

    我写了个例子如下。

    <p id="app">
        <app-content>
            <my-header></my-header>
        </app-content>
    </p>
    <script>
    
        Vue.component("my-header",{
            template: '<h3>this is my-header template </h3>',
        });
        Vue.component("app-content",{
            template: '<p>this is app-content template <slot></slot></p>'
        });
        var app = new Vue({
            el: '#app'
        });
    </script>

    输出效果

    回复
    0
  • 取消回复