import { html } from 'lit'
export const counter = (count: number) => html`
<p>Count: ${count}</p>
<button id="inc">+</button>
<button id="dec">−</button>
`
Lit 微应用
Count
0
import { html } from 'lit'
export const counter = (count: number) => html`
<p>Count: ${count}</p>
<button id="inc">+</button>
<button id="dec">−</button>
`