@cabloy/vue-runtime-core 3.5.47 → 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")) {
@@ -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")) {
@@ -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")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.47",
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",