Skip to content

Commit a98f81a

Browse files
author
Steve Orvell
authored
Merge pull request #220 from abdonrd/patch-1
Remove unused property on the example
2 parents ad193f1 + 51db66e commit a98f81a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ into the element. This is the only method that must be implemented by subclasses
118118
```html
119119
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
120120
<script type="module">
121-
import {LitElement, html, property} from '@polymer/lit-element';
121+
import {LitElement, html} from '@polymer/lit-element';
122122
123123
class MyElement extends LitElement {
124124
@@ -279,4 +279,4 @@ Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also
279279
platform properties like (`id` or `name`) may not have default values set in the element constructor.
280280
On these browsers native properties appear on instances and therefore their default value
281281
will overwrite any element default (e.g. if the element sets this.id = 'id' in the constructor,
282-
the 'id' will become '' since this is the native platform default).
282+
the 'id' will become '' since this is the native platform default).

0 commit comments

Comments
 (0)