framework7-vue
Advanced tools
Comparing version 8.1.0 to 8.2.0
@@ -197,3 +197,3 @@ import { computed, ref, onMounted, onBeforeUnmount, h, provide, toRaw } from 'vue'; | ||
const rootChildrenAfterList = []; | ||
const ulChildren = slotsList || []; | ||
const ulChildren = slotsList && typeof slotsList === 'function' ? [slotsList()] : []; | ||
let wasUlChild = false; | ||
@@ -200,0 +200,0 @@ if (slotsDefault) { |
/** | ||
* Framework7 Vue 8.1.0 | ||
* Framework7 Vue 8.2.0 | ||
* Build full featured iOS & Android apps using Framework7 & Vue | ||
@@ -10,3 +10,3 @@ * https://framework7.io/vue/ | ||
* | ||
* Released on: June 12, 2023 | ||
* Released on: July 6, 2023 | ||
*/ | ||
@@ -13,0 +13,0 @@ import Framework7Vue from './shared/plugin.js'; |
{ | ||
"name": "framework7-vue", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"description": "Build full featured iOS & Android apps using Framework7 & Vue", | ||
@@ -58,3 +58,3 @@ "type": "module", | ||
}, | ||
"releaseDate": "June 12, 2023" | ||
"releaseDate": "July 6, 2023" | ||
} |
Sorry, the diff of this file is too big to display
841753