1.0.8 • Published 6 years ago

zr-vue-ui v1.0.8

Weekly downloads
37
License
-
Repository
-
Last release
6 years ago

zr-vue-ui

UI components based on Vue

Install

npm install zr-vue-ui --save

Components

  1. Loading
import Vue from 'vue';
import { Loading } from 'zr-vue-ui';
Vue.use(Loading);
// or
Vue.use(Loading ,{type : 'b'});
  1. Scroll

Scroll 组件默认开启阻止ios设备上滚动回弹效果,封装了滚动触底事件,便于实现上拉加载效果。

// main.js
import Vue from 'vue';
import { Scroll } from 'zr-vue-ui';
Vue.use(Scroll);
<!-- *.vue -->
<template>
  <Scroll ref="scroll" @reachBottom="onReachBottom" :threshold="30" :pullUpLoad="true">
  </Scroll>
</template>
1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago