@cabloy/vue-runtime-core 3.5.46 → 3.5.48

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.
@@ -6715,6 +6715,7 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6715
6715
  const res = {};
6716
6716
  if (!inheritAttrs) return res;
6717
6717
  for (const key in attrs) {
6718
+ if (key.startsWith("v-")) continue;
6718
6719
  if (inheritAttrs) {
6719
6720
  if (inheritAttrs === true) {
6720
6721
  if (key.startsWith("nativeOn")) {
@@ -7501,7 +7502,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
7501
7502
  if (props && props["v-slots"]) {
7502
7503
  if (!children) children = {};
7503
7504
  if (shared.isFunction(children)) children = { default: children };
7504
- if (children === "object") {
7505
+ if (typeof children === "object") {
7505
7506
  children = Object.assign({}, props["v-slots"], children);
7506
7507
  }
7507
7508
  }
@@ -5267,6 +5267,7 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
5267
5267
  const res = {};
5268
5268
  if (!inheritAttrs) return res;
5269
5269
  for (const key in attrs) {
5270
+ if (key.startsWith("v-")) continue;
5270
5271
  if (inheritAttrs) {
5271
5272
  if (inheritAttrs === true) {
5272
5273
  if (key.startsWith("nativeOn")) {
@@ -6001,7 +6002,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
6001
6002
  if (props && props["v-slots"]) {
6002
6003
  if (!children) children = {};
6003
6004
  if (shared.isFunction(children)) children = { default: children };
6004
- if (children === "object") {
6005
+ if (typeof children === "object") {
6005
6006
  children = Object.assign({}, props["v-slots"], children);
6006
6007
  }
6007
6008
  }
@@ -6772,6 +6772,7 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6772
6772
  const res = {};
6773
6773
  if (!inheritAttrs) return res;
6774
6774
  for (const key in attrs) {
6775
+ if (key.startsWith("v-")) continue;
6775
6776
  if (inheritAttrs) {
6776
6777
  if (inheritAttrs === true) {
6777
6778
  if (key.startsWith("nativeOn")) {
@@ -7558,7 +7559,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
7558
7559
  if (props && props["v-slots"]) {
7559
7560
  if (!children) children = {};
7560
7561
  if (isFunction(children)) children = { default: children };
7561
- if (children === "object") {
7562
+ if (typeof children === "object") {
7562
7563
  children = Object.assign({}, props["v-slots"], children);
7563
7564
  }
7564
7565
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.46",
3
+ "version": "3.5.48",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",