This repository was archived by the owner on Mar 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ module.exports = {
19
19
'vue/html-indent' : [ 1 , 2 ] ,
20
20
'camelcase' : 0 ,
21
21
'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 ,
23
24
}
24
25
}
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ The component `Pivot` has an aggregation table (referred to as `PivotTable`) fro
24
24
25
25
` Pivot ` has also a drag & drop user interface to configure rows/columns of a ` PivotTable ` .
26
26
27
+ You have to ` npm install ` bootstrap.
28
+
27
29
``` html
28
30
<!-- App.vue (template) -->
29
31
<template >
@@ -67,6 +69,7 @@ export default Vue.extend({
67
69
getter : item => item .z ,
68
70
label: ' Z-axis'
69
71
}],
72
+ fieldsOrder: {}
70
73
},
71
74
reducer : (sum , item ) => sum + 1 ,
72
75
defaultShowSettings: true ,
@@ -143,9 +146,7 @@ npm run build
143
146
```
144
147
145
148
## Future features
146
- - Change the sort order of row / column items
147
149
- Select enable / disable of each features (reset buttons, download button, and etc.)
148
- - Demo application
149
150
- More sophiscated design updates
150
151
151
152
## Framework/Plugin
You can’t perform that action at this time.
0 commit comments