openatc-components 0.4.12 → 0.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,6 +129,9 @@ export default {
129
129
  type: String,
130
130
  default: 'Header'
131
131
  },
132
+ isOptimize: {
133
+ type: Boolean
134
+ },
132
135
  tableRing: {
133
136
  type: Array
134
137
  },
@@ -180,6 +183,14 @@ export default {
180
183
  this.addMin()
181
184
  },
182
185
  watch: {
186
+ isOptimize: {
187
+ handler: function (val) {
188
+ if (val) {
189
+ this.optimize()
190
+ }
191
+ },
192
+ deep: true
193
+ },
183
194
  list: {
184
195
  handler: function () {
185
196
  this.addMin()