@stencil/vue-output-target
Advanced tools
Comparing version 0.5.1-1 to 0.5.1-2
{ | ||
"name": "@stencil/vue-output-target", | ||
"version": "0.5.1-1", | ||
"version": "0.5.1-2", | ||
"description": "Vue output target for @stencil/core components.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
@@ -154,4 +154,5 @@ import { VNode, defineComponent, getCurrentInstance, h, inject, ref, Ref } from 'vue'; | ||
for (const key in props) { | ||
if (props.hasOwnProperty(key)) { | ||
propsToAdd[key] = props[key]; | ||
const value = props[key]; | ||
if (props.hasOwnProperty(key) && value !== EMPTY_PROP) { | ||
propsToAdd[key] = value; | ||
} | ||
@@ -158,0 +159,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48023
993