We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you define an element with a slot element within a wire-card and use this element and provide a wired-input element, it will not be shown.
The text was updated successfully, but these errors were encountered:
MyElement: import { html, css, LitElement } from 'lit-element';
export class MyElement extends LitElement { static get styles() { return css:host { }; }
:host { }
static get properties() { return { }; }
constructor() { super(); }
render() { return html<wired-card> <slot></slot> </wired-card>; } }
<wired-card> <slot></slot> </wired-card>
window.customElements.define('my-element', MyElement);
MyApp: import { html, css, LitElement } from 'lit-element'; import { MyElement } from './MyElement.js';
export class MyApp extends LitElement { static get styles() { return css:host { }; }
render() { return html<my-element> <wired-input placeholder="Test" value="test"></wired-input> </my-element>; } }
<my-element> <wired-input placeholder="Test" value="test"></wired-input> </my-element>
window.customElements.define('my-app', MyApp);
Sorry, something went wrong.
This should be resolve in v2.1.2
No branches or pull requests
If you define an element with a slot element within a wire-card and use this element and provide a wired-input element, it will not be shown.
The text was updated successfully, but these errors were encountered: