Add ESLint (#3)

This commit is contained in:
Justin Fagnani
2019-12-18 11:35:37 -08:00
committed by GitHub
parent d50f5a7c7e
commit 7b6b9cf0b4
5 changed files with 742 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ export class MyElement extends LitElement {
@property({type: Number})
count = 0;
render(){
render() {
return html`
<h1>Hello, ${this.name}!</h1>
<button @click=${this._onClick}>Click Count: ${this.count}</button>