This commit is contained in:
Luiz Silva 2026-01-27 17:11:13 -03:00
parent 67dc4c465a
commit 92662a0b13
20 changed files with 1005 additions and 774 deletions

View file

@ -4,14 +4,14 @@
<script lang="ts">
import { defineComponent, PropType } from "vue"
import { tiposTabelaCelulas } from "./tiposTabelaCelulas";
import type { TiposTabelaCelulas } from "./tiposTabelaCelulas";
export default defineComponent({
name: "EliTabelaCelulaTextoSimples",
components: {},
props: {
dados: {
type: Object as PropType<tiposTabelaCelulas['textoSimples']>,
type: Object as PropType<TiposTabelaCelulas["textoSimples"]>,
},
},
data() {