feat: componente de badge
This commit is contained in:
parent
751857b170
commit
454fddb061
5 changed files with 328 additions and 1 deletions
|
|
@ -1,13 +1,16 @@
|
|||
import type { App } from "vue";
|
||||
import { EliOlaMundo } from "./componentes/EliOlaMundo";
|
||||
import { EliBotao } from "./componentes/EliBotao";
|
||||
import { EliBadge } from "./componentes/EliBadge";
|
||||
|
||||
export { EliOlaMundo };
|
||||
export { EliBotao };
|
||||
export { EliBadge };
|
||||
|
||||
export default {
|
||||
install(app: App) {
|
||||
app.component("EliOlaMundo", EliOlaMundo);
|
||||
app.component("EliBotao", EliBotao);
|
||||
app.component("EliBadge", EliBadge);
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue