Skip to content
This repository has been archived by the owner on Oct 24, 2019. It is now read-only.

v2.1.0

Latest
Compare
Choose a tag to compare
@jung-han jung-han released this 10 Oct 08:05
· 2 commits to master since this release

feat

  • #12 use option directly
<grid
  :data="gridProps.data"
  :columns="gridProps.columns"
  :options="gridProps.options"
  :theme="gridProps.myTheme"
  @check="onCheck"
  @uncheck="onUnCheck"
  :rowHeaders="gridProps.rowHeaders"
  :columnOptions="gridProps.columnOptions"
></grid>

fix

  • #11 Add 'object' to data type

Deprecate Method

  • setLanguage
  • applyTheme

Use static method, please.

import TuiGrid from 'tui-grid';

TuiGrid.setLanguage('ko');
TuiGrid.applyTheme('striped');