@a2000/select
v0.0.7
Published
A2K Select Input
Downloads
19
Readme
Select
Renders a select input with a windows 2000 flavour
Usage
- Begin by installing with your favourite package manager:
npm install @a2000/select
- Use within your HTML templates as follows:
<!DOCTYPE html>
<html>
<head>
<title>Quick Start</title>
<meta charset="UTF-8" />
</head>
<body>
<!-- Use web components in your HTML like regular built-in elements. -->
<a2k-select></a2k-select>
<!-- a2k web components use standard JavaScript modules. -->
<script type="module">
import "@a2000/select/a2k-select.js";
</script>
</body>
</html>