首页 > 技术文章 > [vue避坑]vue插槽使用遇到的坑

xxks 2021-04-10 17:13 原文

        <template id="nnm">
            <div>
                <h2>哈哈哈</h2>
                <p>我是组件</p>
                <slot><button>点击</button></slot>
            </div>
        </template> 

template使用时id定义在template 而不是div上面,细节,注意

推荐阅读