Нема описа

gemer 1bbab5ca0d update readme пре 4 година
public 7e9272d4f7 init пре 4 година
src 8c04c3722f done with doc and release command пре 4 година
.gitignore 7e9272d4f7 init пре 4 година
.npmignore 3c89d8d32e base init component пре 4 година
README.md 1bbab5ca0d update readme пре 4 година
babel.config.js 957c7e184c base init component пре 4 година
cspell.json 957c7e184c base init component пре 4 година
package-lock.json 3fe43384f1 0.1.4 пре 4 година
package.json 3fe43384f1 0.1.4 пре 4 година
yarn.lock 7e9272d4f7 init пре 4 година

README.md

@wujing/danmaku 弹幕插件(武警)

Maintainer: 张宇鹏 zhangyupeng@cgaii.com

安装 :

npm install @wujing/danmaku --save

参数:

参数 Type类型 必选 required 描述 默认值
quotes Array 预选选择列表 []
showIcon String/Object 显示ICON None
closeIcon String/Object 隐藏ICON None
Limit Number 限制条数 5000

使用方法:

// 引入组件
import Danmaku from "@wujing/danmaku";
import "@wujing/danmaku/dist/danmaku.css";

 // 预选选择列表

const quotesData =["中国人民好样!","中国最强大!!"];
<template>
 <Danmaku
        :quotes="quotesData"
        :showIcon="require('./assets/list-enable-btn.png')"
        :closeIcon="require('./assets/list-disable-btn.png')"
      />
</template>

export default {
  components: {
    Danmaku,
  },
};