feat: componente padrao de botao
This commit is contained in:
parent
35f9d57ce7
commit
751857b170
7 changed files with 416 additions and 17 deletions
14
src/index.ts
14
src/index.ts
|
|
@ -1,11 +1,13 @@
|
|||
import type { App } from "vue";
|
||||
import { EliOlaMundo } from "./componentes/EliOlaMundo";
|
||||
import { EliBotao } from "./componentes/EliBotao";
|
||||
|
||||
import type { App } from "vue"
|
||||
import { EliOlaMundo } from './componentes/EliOlaMundo'
|
||||
|
||||
export { EliOlaMundo }
|
||||
export { EliOlaMundo };
|
||||
export { EliBotao };
|
||||
|
||||
export default {
|
||||
install(app: App) {
|
||||
app.component('EliOlaMundo', EliOlaMundo)
|
||||
app.component("EliOlaMundo", EliOlaMundo);
|
||||
app.component("EliBotao", EliBotao);
|
||||
},
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue