1.0.3 • Published 4 years ago

react-vue-loading v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

react-vue-loading

适用于 React Vue 的 loading 组件


👋 react-vue-loading homepage

引入

$ npm install react-vue-loading --save
# or
$ yarn install react-vue-loading --save

React 使用

import RVloading from 'react-vue-loading';

class Example extends Component {
  render() {
    return (
      <div className="example">
        <RVloading />
      </div>
    );
  }
}

Vue 使用

//mian.js
import RVloading from 'react-vue-loading';
Vue.use(RVloading);

//Example.vue
<template>
  <div class="example">
    <RVloading />
  </div>
</template>;

Props

属性默认值数据类型
size24number string
color#2396fastring

示例

<RVloading size='32' color='#2396fa'/>
// or
<RVloading size={32} color='red'/>

download

> git clone https://github.com/weilkss/react-vue-loading.git
> npm i
> npm run build