美文网首页
Vue中的插槽(slot)-具名插槽

Vue中的插槽(slot)-具名插槽

作者: daoqing99 | 来源:发表于2018-04-17 14:34 被阅读0次
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Vue中的插槽(slot)</title>
</head>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>

<body>
    <div id="app">
        <child>
            <header slot='header'>header</header>
            <footer slot='footer'>footer</footer>
        </child>
    </div>
    <script>
    Vue.component("child", {

        template: `
            <div>
                    <slot name='header'></slot>
                    <div>content</div>
                    <slot name='footer'></slot>
                </div> `,

    });

    var vm = new Vue({
        el: '#app'
    })
    </script>
</body>

</html>

相关文章

网友评论

      本文标题:Vue中的插槽(slot)-具名插槽

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