@sysvale/cuida 3.72.4 → 3.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/dist/@sysvale/cuida.es.js +3418 -3411
- package/dist/@sysvale/cuida.umd.js +18 -18
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,13 @@ import '@sysvale/cuida/dist/style.css';
|
|
|
34
34
|
- E instale o Cuida:
|
|
35
35
|
|
|
36
36
|
```js
|
|
37
|
-
|
|
37
|
+
app.use(Cuida);
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
- Exponha os utils do Cuida:
|
|
41
|
+
|
|
42
|
+
```js
|
|
43
|
+
app.provide('cdsUtils', cdsUtils);
|
|
38
44
|
```
|
|
39
45
|
|
|
40
46
|
- Agora para utilizar os componentes, basta usá-los no seu template. Como exemplo, para usar a
|