Skip to content

Commit 72ec3b7

Browse files
committed
Version 1.3.3
1 parent 9d9fa5c commit 72ec3b7

File tree

3 files changed

+39
-137
lines changed

3 files changed

+39
-137
lines changed

README.md

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
1-
<a href="https://npmjs.com/package/vue-virtual-scroll-list">
2-
<img alt="NPM version" src="https://img.shields.io/npm/v/vue-virtual-scroll-list.svg"/>
3-
</a>
4-
<a href="https://travis-ci.org/tangbc/vue-virtual-scroll-list">
5-
<img alt="Travis CI Status" src="https://travis-ci.org/tangbc/vue-virtual-scroll-list.svg?branch=master"/>
6-
</a>
7-
<a href="https://codecov.io/gh/tangbc/vue-virtual-scroll-list">
8-
<img alt="Code Coverage" src="https://codecov.io/gh/tangbc/vue-virtual-scroll-list/branch/master/graph/badge.svg"/>
9-
</a>
10-
<a href="https://npmjs.com/package/vue-virtual-scroll-list">
11-
<img alt="NPM downloads" src="https://img.shields.io/npm/dm/vue-virtual-scroll-list.svg">
12-
</a>
13-
<a href="https://vuejs.org/">
14-
<img alt="Vue version" src="https://img.shields.io/badge/vue-%3E=2.3.0-brightgreen.svg"/>
15-
</a>
16-
<a href="https://opensource.org/licenses/MIT">
17-
<img alt="License" src="https://img.shields.io/npm/l/vue-virtual-scroll-list.svg">
18-
</a>
19-
<a href="http://packagequality.com/#?package=vue-virtual-scroll-list">
20-
<img alt="Package quality" src="https://npm.packagequality.com/shield/vue-virtual-scroll-list.svg">
21-
</a>
22-
23-
##
24-
25-
*If you are looking for a vue component which support big amount data list with high scroll performance, now you are in the right place!*
1+
<p>
2+
<a href="https://travis-ci.org/tangbc/vue-virtual-scroll-list">
3+
<img alt="Travis CI Status" src="https://travis-ci.org/tangbc/vue-virtual-scroll-list.svg?branch=master"/>
4+
</a>
5+
<a href="https://codecov.io/gh/tangbc/vue-virtual-scroll-list">
6+
<img alt="Code Coverage" src="https://codecov.io/gh/tangbc/vue-virtual-scroll-list/branch/master/graph/badge.svg"/>
7+
</a>
8+
<a href="https://npmjs.com/package/vue-virtual-scroll-list">
9+
<img alt="NPM downloads" src="https://img.shields.io/npm/dm/vue-virtual-scroll-list.svg">
10+
</a>
11+
<a href="http://packagequality.com/#?package=vue-virtual-scroll-list">
12+
<img alt="Package quality" src="https://npm.packagequality.com/shield/vue-virtual-scroll-list.svg">
13+
</a>
14+
<a href="https://npmjs.com/package/vue-virtual-scroll-list">
15+
<img alt="NPM version" src="https://img.shields.io/npm/v/vue-virtual-scroll-list.svg"/>
16+
</a>
17+
<a href="https://vuejs.org/">
18+
<img alt="Vue version" src="https://img.shields.io/badge/vue-%3E=2.3.0-brightgreen.svg"/>
19+
</a>
20+
<a href="https://opensource.org/licenses/MIT">
21+
<img alt="License" src="https://img.shields.io/npm/l/vue-virtual-scroll-list.svg">
22+
</a>
23+
</p>
24+
25+
<p>
26+
<i>If you are looking for a vue component which support big amount data list with high scroll performance, now you are in the right place!</i>
27+
</p>
2628

2729
* [Advantages](#advantages)
2830
* [Live demos](#live-demos)
@@ -61,6 +63,8 @@
6163

6264
* [Use with variable height](https://tangbc.github.io/vue-virtual-scroll-list/demos/variable-height).
6365

66+
Besides, you can also compare the experience which **without using** virtual-list here: [without-virtual-list](https://tangbc.github.io/vue-virtual-scroll-list/demos/without-virtual-list).
67+
6468

6569
## How it works
6670

@@ -122,7 +126,7 @@ new Vue({
122126
})
123127
```
124128

125-
More use ways or get start you can refer to these clearly [demos](https://github.com/tangbc/vue-virtual-scroll-list/tree/master/demos).
129+
More use ways or get start you can refer to these clearly [demos](https://github.com/tangbc/vue-virtual-scroll-list/tree/master/demos) or [test suites](https://github.com/tangbc/vue-virtual-scroll-list/tree/master/test).
126130

127131

128132
## Attentions

package-lock.json

Lines changed: 3 additions & 105 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-virtual-scroll-list",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "A vue component support big amount data list with high scroll performance.",
55
"main": "index.js",
66
"files": [
@@ -10,10 +10,10 @@
1010
"test": "jest",
1111
"lint": "eslint index.js",
1212
"ci": "npm run lint && npm run test",
13-
"dev": "npm run server & npm run demo:dev",
14-
"server": "node node_modules/@tangbc/tiny-node-server",
15-
"demo:dev": "cross-env NODE_ENV=development webpack --config ./demos/webpack.conf.js",
16-
"demo:build": "cross-env NODE_ENV=production webpack --config ./demos/webpack.conf.js"
13+
"demo": "npm run static:server & npm run dev:demo",
14+
"static:server": "node node_modules/@tangbc/tiny-node-server",
15+
"dev:demo": "cross-env NODE_ENV=development webpack --config ./demos/webpack.conf.js",
16+
"build:demo": "cross-env NODE_ENV=production webpack --config ./demos/webpack.conf.js"
1717
},
1818
"keywords": [
1919
"vue",
@@ -38,7 +38,7 @@
3838
"devDependencies": {
3939
"@babel/core": "^7.4.0",
4040
"@babel/preset-env": "^7.4.2",
41-
"@tangbc/tiny-node-server": "^1.0.4",
41+
"@tangbc/tiny-node-server": "^1.0.5",
4242
"@vue/test-utils": "^1.0.0-beta.29",
4343
"babel-jest": "^24.7.0",
4444
"babel-loader": "^8.0.5",

0 commit comments

Comments
 (0)