Skip to content

Commit

Permalink
Merge branch 'release/1.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
binggg committed Sep 15, 2017
2 parents b98907f + 075201f commit 456fbf4
Show file tree
Hide file tree
Showing 4 changed files with 1,114 additions and 14 deletions.
73 changes: 73 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<a name="1.0.7"></a>
## [1.0.7](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.6...v1.0.7) (2017-09-15)



<a name="1.0.6"></a>
## [1.0.6](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.5...v1.0.6) (2017-09-14)


### Features

* **component:** make prop viewport working ([5a1db8a](https://github.com/xunleif2e/vue-lazy-component/commit/5a1db8a))



<a name="1.0.5"></a>
## [1.0.5](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.4...v1.0.5) (2017-09-13)


### Bug Fixes

* **observer:** make observer more sensitive ([c7fa734](https://github.com/xunleif2e/vue-lazy-component/commit/c7fa734))



<a name="1.0.4"></a>
## [1.0.4](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.3...v1.0.4) (2017-09-13)


### Bug Fixes

* **observer:** fix observer callback didn't exec ([d67f15e](https://github.com/xunleif2e/vue-lazy-component/commit/d67f15e))



<a name="1.0.3"></a>
## [1.0.3](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.2...v1.0.3) (2017-09-13)


### Bug Fixes

* **observer:** no isIntersecting bug ([5e7c349](https://github.com/xunleif2e/vue-lazy-component/commit/5e7c349))



<a name="1.0.2"></a>
## [1.0.2](https://github.com/xunleif2e/vue-lazy-component/compare/v1.0.1...v1.0.2) (2017-09-12)



<a name="1.0.1"></a>
## [1.0.1](https://github.com/xunleif2e/vue-lazy-component/compare/4738b55...v1.0.1) (2017-09-12)


### Bug Fixes

* **demo:** fix demo highlight bug ([7b67c74](https://github.com/xunleif2e/vue-lazy-component/commit/7b67c74))
* **demo:** rebuild demo page ([9868912](https://github.com/xunleif2e/vue-lazy-component/commit/9868912))
* **observer:** fix observer bug ([9fa8a45](https://github.com/xunleif2e/vue-lazy-component/commit/9fa8a45))


### Features

* **main:** Add chunks example ([3518f4e](https://github.com/xunleif2e/vue-lazy-component/commit/3518f4e))
* **main:** first version ([4738b55](https://github.com/xunleif2e/vue-lazy-component/commit/4738b55))


### BREAKING CHANGES

* **main:** 支持 组可见或即将可见时懒加载



29 changes: 24 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Vue Lazy Component


[![npm version](https://badge.fury.io/js/%40xunlei%2Fvue-lazy-component.svg)](https://badge.fury.io/js/%40xunlei%2Fvue-lazy-component)
[![npm](https://img.shields.io/npm/v/@xunlei/vue-lazy-component.svg)](https://www.npmjs.com/package/@xunlei/vue-lazy-component)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Git flow work flow](https://img.shields.io/badge/git--flow-workflow-brightgreen.svg)](https://github.com/nvie/gitflow/)
[![GitHub stars](https://img.shields.io/github/stars/xunleif2e/vue-lazy-component.svg)](https://github.com/xunleif2e/vue-lazy-component/stargazers)
[![GitHub issues](https://img.shields.io/github/issues/xunleif2e/vue-lazy-component.svg)](https://github.com/xunleif2e/vue-lazy-component/issues)
[![GitHub forks](https://img.shields.io/github/forks/xunleif2e/vue-lazy-component.svg)](https://github.com/xunleif2e/vue-lazy-component/network)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/xunleif2e/vue-lazy-component/master/LICENSE)

> Vue.js 2.0 组件级懒加载方案
Expand Down Expand Up @@ -112,10 +118,6 @@ https://github.com/w3c/IntersectionObserver/tree/gh-pages/polyfill
https://cn.vuejs.org/v2/guide/components.html#作用域插槽

## ChangeLog
- [1.0.0] 2017-09-11
- 实现懒加载组件的基本功能

## Development Setup

``` bash
Expand All @@ -133,8 +135,25 @@ npm run build:library

# build demo
npm run build:demo

# commit use commitizen
npm run commit

# pre publish
npm run prepublish

# generate changelog
npm run changelog
```

## Roadmap

- SSR 支持 @ v1.1.0

- UI单元测试 @ v1.2.0

- 减少性能开销 @ v1.3.0

## License

[MIT](http://opensource.org/licenses/MIT)
Expand Down
Loading

0 comments on commit 456fbf4

Please sign in to comment.