Make the default the same as the getter default

This commit is contained in:
Jeremiah Hoyet
2021-11-22 19:30:51 -05:00
parent 3141590d28
commit e9f7c5ed5a

View File

@@ -17,7 +17,7 @@ import styles from './radio-group.styles';
@customElement('sl-radio-group')
export default class SlRadioGroup extends LitElement {
static styles = styles;
private _value: string;
private _value: string = '';
@query('slot:not([name])') defaultSlot: HTMLSlotElement;