Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2022-11-11 | Don't rm cached | 4 | -4/+0 | |
2022-11-11 | try this | 4 | -0/+4 | |
2022-11-11 | Update bun-linux-build.yml | 1 | -1/+0 | |
2022-11-11 | try using git action | 4 | -7/+8 | |
2022-11-11 | Remove with `git rm` | 2 | -8/+0 |
import { LitElement, html } from 'lit'; export const tagName = 'my-counter'; class Counter extends LitElement { static get properties() { return { count: { type: Number, }, }; } constructor() { super(); this.count = 0; } increment() { this.count++; } render() { return html`
Count: ${this.count}
aboutsummaryrefslogtreecommitdiff |
Age | Commit message (Expand) | Author | Files | Lines |
---|---|---|---|---|
2022-11-11 | Don't rm cached | 4 | -4/+0 | |
2022-11-11 | try this | 4 | -0/+4 | |
2022-11-11 | Update bun-linux-build.yml | 1 | -1/+0 | |
2022-11-11 | try using git action | 4 | -7/+8 | |
2022-11-11 | Remove with `git rm` | 2 | -8/+0 |