update
This commit is contained in:
@@ -23,13 +23,13 @@ class TestNestedWrapper extends DeesElement {
|
||||
@customElement('test-nested-target')
|
||||
class TestNestedTarget extends DeesElement {
|
||||
@property({ type: String })
|
||||
public message: string = 'I am deeply nested!';
|
||||
accessor message: string = 'I am deeply nested!';
|
||||
|
||||
@property({ type: Number })
|
||||
public depth: number = 0;
|
||||
accessor depth: number = 0;
|
||||
|
||||
@property({ type: Boolean })
|
||||
public found: boolean = false;
|
||||
accessor found: boolean = false;
|
||||
|
||||
public static styles = [
|
||||
css`
|
||||
@@ -67,7 +67,7 @@ export class TestNested extends DeesElement {
|
||||
`;
|
||||
|
||||
@property({ type: String })
|
||||
public testId: string = 'nested-test';
|
||||
accessor testId: string = 'nested-test';
|
||||
|
||||
public static styles = [
|
||||
css`
|
||||
|
||||
Reference in New Issue
Block a user