@mozaic-ds/vue 0.14.1 → 0.14.3-beta.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/vue",
3
- "version": "0.14.1",
3
+ "version": "0.14.3-beta.0",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build ./src/index.js",
@@ -474,6 +474,8 @@ export default {
474
474
  }
475
475
 
476
476
  try {
477
+ this.total = Array.isArray(this.source) ? this.source.length : this.total;
478
+
477
479
  const options = buildOptions(
478
480
  this.pagingOptions.enabled,
479
481
  this.getPageValue,
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <component :is="htmlTag" class="mc-option-group">
3
- {{ label }}
3
+ <slot />
4
4
  </component>
5
5
  </template>
6
6