Primeira Versão do Sistema de componentes Vue
This commit is contained in:
commit
35f9d57ce7
22 changed files with 1605 additions and 0 deletions
15
src/playground/App.vue
Normal file
15
src/playground/App.vue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<EliOlaMundo />
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
import { EliOlaMundo } from '@/componentes/EliOlaMundo'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'App',
|
||||
components: {
|
||||
EliOlaMundo
|
||||
}
|
||||
})
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue