@pinegrow/vite-plugin 3.0.0-beta.56 → 3.0.0-beta.57
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/dist/vue-plugin.js +3 -1
- package/package.json +1 -1
package/dist/vue-plugin.js
CHANGED
|
@@ -186,6 +186,8 @@ export function usePinegrow() {
|
|
|
186
186
|
|
|
187
187
|
function getFragmentRootVNodes(vnode) {
|
|
188
188
|
if (!vnode.children) return []
|
|
189
|
+
// children is v-if when the vnode has a condition
|
|
190
|
+
if (!Array.isArray(vnode.children)) return []
|
|
189
191
|
|
|
190
192
|
const list = []
|
|
191
193
|
|
|
@@ -277,7 +279,7 @@ export function usePinegrow() {
|
|
|
277
279
|
|
|
278
280
|
const elCacheErrHandlerFn = () => {
|
|
279
281
|
if (message) {
|
|
280
|
-
console.log(message)
|
|
282
|
+
// console.log(message)
|
|
281
283
|
}
|
|
282
284
|
}
|
|
283
285
|
|