chore: alinhar projeto às regras do agent
This commit is contained in:
parent
86d451efa1
commit
51a48eee70
36 changed files with 485 additions and 208 deletions
14
src/index.ts
14
src/index.ts
|
|
@ -1,15 +1,15 @@
|
|||
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";
|
||||
import type { App, Plugin } from "vue";
|
||||
import { EliOlaMundo } from "./componentes/ola_mundo";
|
||||
import { EliBotao } from "./componentes/botao";
|
||||
import { EliBadge } from "./componentes/indicador";
|
||||
import { EliInput } from "./componentes/campo";
|
||||
|
||||
export { EliOlaMundo };
|
||||
export { EliBotao };
|
||||
export { EliBadge };
|
||||
export { EliInput };
|
||||
|
||||
export default {
|
||||
const EliVue: Plugin = {
|
||||
install(app: App) {
|
||||
app.component("EliOlaMundo", EliOlaMundo);
|
||||
app.component("EliBotao", EliBotao);
|
||||
|
|
@ -17,3 +17,5 @@ export default {
|
|||
app.component("EliInput", EliInput);
|
||||
},
|
||||
};
|
||||
|
||||
export default EliVue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue