Primeira Versão do Sistema de componentes Vue
This commit is contained in:
commit
35f9d57ce7
22 changed files with 1605 additions and 0 deletions
11
src/index.ts
Normal file
11
src/index.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
import type { App } from "vue"
|
||||
import { EliOlaMundo } from './componentes/EliOlaMundo'
|
||||
|
||||
export { EliOlaMundo }
|
||||
|
||||
export default {
|
||||
install(app: App) {
|
||||
app.component('EliOlaMundo', EliOlaMundo)
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue