-
![]()
+
{{ slotProps.data.name }}
@@ -124,7 +124,8 @@ export default {
numVisible: 1,
numScroll: 1
}
- ]
+ ],
+ baseUrl: '/'
};
},
productService: null,
@@ -133,6 +134,8 @@ export default {
},
mounted() {
this.productService.getProductsSmall().then((data) => (this.products = data.slice(0, 9)));
+
+ this.baseUrl = process.dev ? '/' : '/primevue-nuxt/';
},
components: {
CarouselDoc: CarouselDoc