Merge branch 'prod'

pull/4409/head
Tuğçe Küçükoğlu 2023-09-07 09:28:00 +03:00
commit f83139fe09
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ import { ref, onMounted } from 'vue';
import { ProductService } from '@/service/ProductService';
onMounted(() => {
productService.value.getProductsMini().then(data => products.value = data);
ProductService.getProductsMini().then(data => products.value = data);
});
const products = ref();

View File

@ -71,7 +71,7 @@ import { ref, onMounted } from 'vue';
import { ProductService } from '@/service/ProductService';
onMounted(() => {
productService.value.getProductsMini().then(data => products.value = data);
ProductService.getProductsMini().then(data => products.value = data);
});
const products = ref();