9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
|
|
import { defineComponent } from 'vue'
|
||
|
|
|
||
|
|
import { Catalogo } from '@src/views/ecommerce'
|
||
|
|
|
||
|
|
export default defineComponent({
|
||
|
|
name: 'CCatalogo',
|
||
|
|
components: { Catalogo },
|
||
|
|
})
|