关于vue插槽的简单问题

关于vue插槽的简单问题

请教一下

  <template slot="header">

<h1>Here might be a page title</h1>

</template>

这段代码是不是相当于

<slot name="header">

<h1>Here might be a page title</h1>

</slot>

急急急,我知道这个语法废弃了,但是我没空看那么多,我只需要理解一个el-table列图片的问题,先谢谢了!!


回答:

<template slot="header"> </template>里面的内容会替换掉<slot name="header"></slot>


回答:

Vue的具名插槽

父组件Container

<div class="container">

<slot name="header"></slot>

</div>


子组件应该为

<Container>

<template v-slot:header>

<h1>Here might be a page title</h1>

</template>

</Container>

以上是 关于vue插槽的简单问题 的全部内容, 来源链接: utcz.com/p/936692.html

回到顶部