@burh/nuxt-core 1.0.416 → 1.0.417

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.
@@ -172,6 +172,10 @@ export default {
172
172
  type: Boolean,
173
173
  default: false
174
174
  },
175
+ numbers: {
176
+ type: [Array, null],
177
+ default: null
178
+ },
175
179
  templates: null
176
180
  },
177
181
  model: {
@@ -192,8 +196,9 @@ export default {
192
196
  this.modelName = null;
193
197
  this.allNumbers = [];
194
198
  }
195
- }
196
199
 
200
+ this.numbers && (this.allNumbers = this.numbers);
201
+ }
197
202
  },
198
203
  data() {
199
204
  return {
@@ -301,8 +306,7 @@ export default {
301
306
  template.user_id
302
307
  );
303
308
  }
304
- },
305
-
309
+ }
306
310
  };
307
311
  </script>
308
312
  <style lang="scss">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.416",
3
+ "version": "1.0.417",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {