Skip to content

data table pagination postion and type parameters are added #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ module.exports = {
'no-eval': 0,
'no-plusplus': 0,
'consistent-return': 0,
'linebreak-style': 0
},
'globals': {
"window": true,
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ test/unit/coverage
test/e2e/reports
selenium-debug.log
build/.cache
.vscode
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
.idea
node_modules/
npm-debug.log
test/unit/coverage
test/e2e/reports
selenium-debug.log
build/.cache
.vscode
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Attention
I'm very sorry about the lack of concern about this library Recently. So busy in doing other things and I have no time to maintain it. I will be back in 2 about months. Thanks everyone!(20170526)
Thanks to Chenz, because of his oblivion to vue-blu project. We generated new version of vue-blu

近期其他事过于繁忙,以致没时间维护这个库了。很抱歉,不能更新和回答大家的问题。我会在大约两个月后回来继续更新维护它。谢谢大家的支持!(20170526)

Expand All @@ -12,13 +13,13 @@ Vue-Blu is an ui components library base on VueJS and Bulma that helps you build
## Installation
Blu is available on NPM
```
npm install vue-blu --save
npm install vue-blu-2 --save
```
### Quick Start
```
import Vue from 'vue'
import VueBlu from 'vue-blu'
import 'vue-blu/dist/css/vue-blu.min.css'
import VueBlu from 'vue-blu-2'
import 'vue-blu-2/dist/css/vue-blu.min.css'

Vue.use(VueBlu)

Expand All @@ -37,7 +38,7 @@ npm run package

## Version

- 0.1.9 beta
- 0.2.0

## Compatibility

Expand Down
8 changes: 4 additions & 4 deletions docs/pages/cn/gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ Vue-Blu是基于[Vuejs](http://www.vuejs.org/)和[Bulma](http://bulma.io/)开发
## 安装

```bash
$ npm install vue-blu --save
$ npm install vue-blu-2 --save
```

## 快速开始


```
import Vue from 'vue'
import VueBlu from 'vue-blu'
import 'vue-blu/dist/css/vue-blu.min.css'
import VueBlu from 'vue-blu-2'
import 'vue-blu-2/dist/css/vue-blu.min.css'

Vue.use(VueBlu)

Expand All @@ -48,7 +48,7 @@ Vue.use(VueBlu)

## 版本

- 0.1.8 beta
- 0.2.0

## 兼容性

Expand Down
2 changes: 2 additions & 0 deletions docs/pages/en/DataTable.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,8 @@ export default {
pagination() {
return {
total: this.dataSource.length,
layout: 'pager',
position: 'center'
};
},
dataSource2() {
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/en/gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ developing fast and powerful web application
## Install

```bash
$ npm install vue-blu --save
$ npm install vue-blu-2 --save
```

## Quick Start


```
import Vue from 'vue'
import VueBlu from 'vue-blu'
import 'vue-blu/dist/css/vue-blu.min.css'
import VueBlu from 'vue-blu-2'
import 'vue-blu-2/dist/css/vue-blu.min.css'

Vue.use(VueBlu)

Expand All @@ -49,7 +49,7 @@ Vue.use(VueBlu)

## Version

- 0.1.7 beta
- 0.2.0

## Compatibility

Expand Down
Loading