feat: inputs de texto e tipos cpf/cnpj, telefone e tipos numericos inteiro e decimal
This commit is contained in:
parent
454fddb061
commit
6c84508996
9 changed files with 454 additions and 23 deletions
|
|
@ -2,15 +2,18 @@ import type { App } from "vue";
|
|||
import { EliOlaMundo } from "./componentes/EliOlaMundo";
|
||||
import { EliBotao } from "./componentes/EliBotao";
|
||||
import { EliBadge } from "./componentes/EliBadge";
|
||||
import { EliInput } from "./componentes/EliInput";
|
||||
|
||||
export { EliOlaMundo };
|
||||
export { EliBotao };
|
||||
export { EliBadge };
|
||||
export { EliInput };
|
||||
|
||||
export default {
|
||||
install(app: App) {
|
||||
app.component("EliOlaMundo", EliOlaMundo);
|
||||
app.component("EliBotao", EliBotao);
|
||||
app.component("EliBadge", EliBadge);
|
||||
app.component("EliInput", EliInput);
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue