point-wave-v3
v1.0.0
Published
大佬的源码,做了个包装,发到npm了 原地址:[大佬原地址](https://www.jianshu.com/p/4fc6871a47c3)
Downloads
2
Readme
粒子效果
大佬的源码,做了个包装,发到npm了 原地址:大佬原地址
简单使用
安装 point-wave
npm install point-wave-v3
一、注册全局组件
import Pointwave from 'point-wave-v3'
Vue.component('Pointwave', Pointwave)
使用
<Pointwave :color="0x00ff00"/>
二、局部注册,按需引用
import Pointwave from 'point-wave-v3'
export default {
name: 'App',
components: {
Pointwave
}
}