Merge branch 'prod'
commit
f83139fe09
|
@ -68,7 +68,7 @@ import { ref, onMounted } from 'vue';
|
||||||
import { ProductService } from '@/service/ProductService';
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
productService.value.getProductsMini().then(data => products.value = data);
|
ProductService.getProductsMini().then(data => products.value = data);
|
||||||
});
|
});
|
||||||
|
|
||||||
const products = ref();
|
const products = ref();
|
||||||
|
|
|
@ -71,7 +71,7 @@ import { ref, onMounted } from 'vue';
|
||||||
import { ProductService } from '@/service/ProductService';
|
import { ProductService } from '@/service/ProductService';
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
productService.value.getProductsMini().then(data => products.value = data);
|
ProductService.getProductsMini().then(data => products.value = data);
|
||||||
});
|
});
|
||||||
|
|
||||||
const products = ref();
|
const products = ref();
|
||||||
|
|
Loading…
Reference in New Issue