1.0.0 • Published 2 years ago

point-wave-v3 v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

粒子效果

大佬的源码,做了个包装,发到npm了 原地址:大佬原地址

github

gitee

简单使用

安装 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
  }
}