Open jieliu218 opened 8 months ago
customElements.define( "weather-widget", r2wc(WeatherWidgetWapper, { props: { latitude: "number", longitude: "number", showHourly: "boolean", theme: "json", test: "string", a: "boolean", }, }), );
showHourly and a are not in props.
only lowcase props work
using lowercase props works for me as well.
customElements.define( "weather-widget", r2wc(WeatherWidgetWapper, { props: { latitude: "number", longitude: "number", showHourly: "boolean", theme: "json", test: "string", a: "boolean", }, }), );
showHourly and a are not in props.