32 lines
575 B
Markdown
32 lines
575 B
Markdown
# trustcontact web components
|
|
|
|
Progetto Vue 3 (Vite) per creare Web Components custom element.
|
|
|
|
## Quick start
|
|
|
|
```bash
|
|
cd web_components
|
|
npm i
|
|
npm run dev
|
|
```
|
|
|
|
Apri il playground su `http://localhost:5173`.
|
|
|
|
## Build libreria
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
Output in `dist/`:
|
|
- `omnimed-web-components.es.js`
|
|
- `omnimed-web-components.iife.js`
|
|
|
|
## Uso nel browser
|
|
|
|
```html
|
|
<link rel="stylesheet" href="/path/omnimed-web-components.css" />
|
|
<script type="module" src="/path/omnimed-web-components.es.js"></script>
|
|
<trustcontact-greeting name="Fabio"></trustcontact-greeting>
|
|
```
|