Files
myprojplanet_vite/src/components/CCatalogo/CCatalogo.ts

31 lines
590 B
TypeScript
Raw Normal View History

import { PropType, defineComponent } from 'vue'
2024-01-30 14:00:48 +01:00
import { Catalogo } from '@src/views/ecommerce'
import { ICatalogo } from '@src/model'
2024-01-30 14:00:48 +01:00
export default defineComponent({
name: 'CCatalogo',
components: { Catalogo },
props: {
// add options ICatalogo
optcatalogo: {
type: Object as PropType<ICatalogo>,
required: false,
default: () => ({
//++AddCATALOGO_FIELDS
productTypes: [],
excludeproductTypes: [],
formato: [],
Categoria: [],
Editore: [],
}),
},
},
setup(props) {
return {
}
}
2024-01-30 14:00:48 +01:00
})