Skip to content

coolwine/vue-group-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-group-table

컬럼별 Group 기능 제공

alt text

Usage

npm install vue-group-table
yarn add vue-group-table


# main.js
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue);

How to use

// import 
import GroupTable from 'vue-group-table';

// add
components: {
    GroupTable
},

// html
<group-table :items="items">
    <!-- 확장하고 싶은 컬럼 slot -->
    <template slot="age" slot-scope="row">
        <span>{{ '나이는 : ' + row.value }}</span>
    </template>
</group-table>

About

vue-group-table

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published