9 lines
182 B
TypeScript
Executable File
9 lines
182 B
TypeScript
Executable File
import { defineComponent } from 'vue'
|
|
|
|
import { ProductsList } from '@src/views/ecommerce'
|
|
|
|
export default defineComponent({
|
|
name: 'CECommerce',
|
|
components: { ProductsList },
|
|
})
|