32 lines
893 B
HTML
32 lines
893 B
HTML
<!doctype html>
|
|||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>choo v8 counter — zero build</title>
|
||
|
|
<!--
|
||
|
|
No bundler, no compiler, no node_modules in the browser: an import map
|
||
|
|
and native ES modules. Serve this directory from the repo root, e.g.
|
||
|
|
npx serve .
|
||
|
|
then open /examples/counter/
|
||
|
|
-->
|
||
|
|
<script type="importmap">
|
||
|
|
{
|
||
|
|
"imports": {
|
||
|
|
"@choojs/core": "../../packages/core/index.js",
|
||
|
|
"@choojs/core/timing": "../../packages/core/lib/timing.js",
|
||
|
|
"@choojs/html": "../../packages/html/browser.js",
|
||
|
|
"@choojs/html/raw": "../../packages/html/raw.js",
|
||
|
|
"@choojs/html/morph": "../../packages/html/morph.js"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<script type="module">
|
||
|
|
import createApp from './app.js'
|
||
|
|
createApp().mount('body')
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|