This commit is contained in:
fabio
2026-03-02 19:44:24 +01:00
parent 25f4701b54
commit 2dd819444e
24 changed files with 978 additions and 517 deletions

View File

@@ -0,0 +1,30 @@
# trustcontact web components
Progetto Vue 3 (Vite) per creare Web Components custom element.
## Quick start
```bash
cd quasar/web_components
npm i
npm run dev
```
Apri il playground su `http://localhost:5173`.
## Build libreria
```bash
npm run build
```
Output in `dist/`:
- `trustcontact-web-components.es.js`
- `trustcontact-web-components.iife.js`
## Uso nel browser
```html
<script type="module" src="/path/trustcontact-web-components.es.js"></script>
<trustcontact-greeting name="Fabio"></trustcontact-greeting>
```