0.2.5 • Published 5 years ago

@dinnerkang/vue-pagination v0.2.5

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

vue-pagination

Supports Vue 2.x Test Version is 0.1.x

https://www.npmjs.com/package/@dinnerkang/vue-pagination

Introduction

You can create a bulletin board with just array data. Use it comfortably !

I want Git Star...

installation

npm install --save @dinnerkang/vue-pagination

Usage

props: {
    data: {
      type: Array,
      required: true
    },
    isIndex: {
      type: Boolean
    }
  },
<template>
    <div>
        <Pagination :data="array" :isIndex="true"></Pagination>
    </div>
</template>

<script>
import Pagination from '@dinnerkang/vue-pagination'
export default{
    data(){
        return{
            array : [{
                "English Data" : "c",
                "한글 데이터" : "한국어 테스트 5",
                "中国 数据" : "你好 3"
            },{
                "English Data" : "test data",
                "한글 데이터" : "한국어 테스트 2",
                "中国 数据" : "你好 4"
            }, ...........
            ]
        }
    }
}
</script>

You must have a ' :data="Your Array" '

Sorting is available

If you do not want to 'Index' you must have a ' :isIndex="true" '

Questions or Issue

Please send mail to jenhyuk0318@gmail.com or Leave the issue to Git

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago