# vue-group-table

> vue-group-table

Latest version **0.2.0** (published 2019-03-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-group-table
pnpm add vue-group-table
yarn add vue-group-table
bun add vue-group-table
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2019-03-11 |
| First published | 2019-01-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 6.0.0 |
| Dependencies | 3 |
| Unpacked size | 135.3 KB |
| Known vulnerabilities | 0 (+2 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | coolwine.kim@gmail.com |
| Maintainers | coolwine |
| Keywords | vuejs, group, table |

## Links

- npm: https://www.npmjs.com/package/vue-group-table
- Repository: https://github.com/coolwine/vue-group-table
- Issues: https://github.com/coolwine/vue-group-table/issues
- npm.io page: https://npm.io/package/vue-group-table

## Dependencies (3)

- [vue](https://npm.io/package/vue.md) ^2.5.2
- [node-sass](https://npm.io/package/node-sass.md) ^4.11.0
- [bootstrap-vue](https://npm.io/package/bootstrap-vue.md) ^2.0.0-rc.11

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 0.2.0 (latest) — 2019-03-11
- 0.1.1 — 2019-01-29
- 0.1.0 — 2019-01-29

## README

# vue-group-table

> 컬럼별 Group 기능 제공

![alt text](static/screen.png)

## Usage

``` bash
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
```html
// 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>
```

---
_Source: https://npm.io/package/vue-group-table · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
