feat(cartao): adicionar cards com status e playground tipo trello

This commit is contained in:
Luiz Silva 2026-01-02 21:48:24 -03:00
parent ab15c51a1b
commit 5bb6732b81
8 changed files with 438 additions and 2 deletions

View file

@ -3,11 +3,13 @@ import { EliOlaMundo } from "./componentes/ola_mundo";
import { EliBotao } from "./componentes/botao";
import { EliBadge } from "./componentes/indicador";
import { EliInput } from "./componentes/campo";
import { EliCartao } from "./componentes/cartao";
export { EliOlaMundo };
export { EliBotao };
export { EliBadge };
export { EliInput };
export { EliCartao };
const EliVue: Plugin = {
install(app: App) {
@ -15,6 +17,7 @@ const EliVue: Plugin = {
app.component("EliBotao", EliBotao);
app.component("EliBadge", EliBadge);
app.component("EliInput", EliInput);
app.component("EliCartao", EliCartao);
},
};