Service typo fixes

pull/4409/head
Tuğçe Küçükoğlu 2023-09-07 09:25:40 +03:00
parent 13da55a448
commit e50d2380bd
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();