@up-packages/ui 0.3.4-qa → 0.3.6-qa
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 +0 -15
- package/dist/up-ui.css +1 -1
- package/dist/uplexis-ui.js +2 -2
- package/dist/uplexis-ui.js.map +1 -1
- package/dist/uplexis-ui.umd.cjs +2 -2
- package/dist/uplexis-ui.umd.cjs.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -118,21 +118,6 @@ const handleClick = () => {
|
|
|
118
118
|
</script>
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
-
### Importação Individual (Tree-shaking)
|
|
122
|
-
|
|
123
|
-
Para otimizar o bundle, importe apenas os componentes que você precisa:
|
|
124
|
-
|
|
125
|
-
```vue
|
|
126
|
-
<template>
|
|
127
|
-
<UpxButton color="primary">Meu Botão</UpxButton>
|
|
128
|
-
</template>
|
|
129
|
-
|
|
130
|
-
<script setup lang="ts">
|
|
131
|
-
import { UpxButton } from "@uplexis/ui";
|
|
132
|
-
import "@uplexis/ui/styles.css";
|
|
133
|
-
</script>
|
|
134
|
-
```
|
|
135
|
-
|
|
136
121
|
### Usando com Vuetify Customizado
|
|
137
122
|
|
|
138
123
|
Se você já tem uma instância do Vuetify configurada:
|