hellodigua / vue-danmaku

基于 Vue 的弹幕交互组件 | A danmaku component for Vue
https://hellodigua.github.io/vue-danmaku
MIT License
620 stars 60 forks source link

slot自定义失效(包括源码) #13

Closed 2016011969sunyifang closed 3 years ago

2016011969sunyifang commented 3 years ago

您好,我在项目中用了您的弹幕库 但是发现slot自定义时样式不生效 把您的源码clone下来后发现也不可以 但是在demo演示里是可以的 是不是有什么问题

hellodigua commented 3 years ago

请附上您的代码实现和使用的vue-danmaku版本号,谢谢

yliaz commented 3 years ago

可以查看下Vue版本,2.6.0之后支持v-slot语法,之前的需要使用slot和slot-scope,详见Vue插槽

<template slot="dm" slot-scope="{ index, barrage }">
    <barrage-item></barrage-item>
</template>