[vue避坑]vue插槽使用遇到的坑
<template id="nnm"> <div> <h2>哈哈哈</h2> <p>我是组件</p> <slot><button>点击</button></slot> </div> </template>
template使用时id定义在template 而不是div上面,细节,注意
个人小站,欢迎访问!http://klvr.xyz
<template id="nnm"> <div> <h2>哈哈哈</h2> <p>我是组件</p> <slot><button>点击</button></slot> </div> </template>
template使用时id定义在template 而不是div上面,细节,注意