Skip to content
This repository was archived by the owner on Mar 9, 2023. It is now read-only.

Commit 7e51ac3

Browse files
authored
Merge pull request #27 from line/fix-sample
Fix readme, update eslint
2 parents 6cba9e5 + e4b9c8c commit 7e51ac3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'vue/html-indent': [1, 2],
2020
'camelcase': 0,
2121
'vue/no-use-v-if-with-v-for': 0,
22-
'no-unmodified-loop-condition': 0
22+
'no-unmodified-loop-condition': 0,
23+
'no-irregular-whitespace': 0,
2324
}
2425
}

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ The component `Pivot` has an aggregation table (referred to as `PivotTable`) fro
2424

2525
`Pivot` has also a drag & drop user interface to configure rows/columns of a `PivotTable`.
2626

27+
You have to `npm install` bootstrap.
28+
2729
```html
2830
<!-- App.vue (template) -->
2931
<template>
@@ -67,6 +69,7 @@ export default Vue.extend({
6769
getter: item => item.z,
6870
label: 'Z-axis'
6971
}],
72+
fieldsOrder: {}
7073
},
7174
reducer: (sum, item) => sum + 1,
7275
defaultShowSettings: true,
@@ -143,9 +146,7 @@ npm run build
143146
```
144147

145148
## Future features
146-
- Change the sort order of row / column items
147149
- Select enable / disable of each features (reset buttons, download button, and etc.)
148-
- Demo application
149150
- More sophiscated design updates
150151

151152
## Framework/Plugin

0 commit comments

Comments
 (0)