This commit is contained in:
Luiz Silva 2026-01-27 16:40:06 -03:00
parent 64535c51a3
commit 67dc4c465a
6 changed files with 101 additions and 15 deletions

View file

@ -0,0 +1,30 @@
<template>
{{ dados?.texto }}
</template>
<script lang="ts">
import { defineComponent, PropType } from "vue"
import { tiposTabelaCelulas } from "./tiposTabelaCelulas";
export default defineComponent({
name: "EliTabelaCelulaTextoSimples",
components: {},
props: {
dados: {
type: Object as PropType<tiposTabelaCelulas['textoSimples']>,
},
},
data() {
return {
}
},
methods: {
},
setup({ dados }) {
return { dados }
},
})
</script>
<style scoped></style>