cosmetics

pull/2862/head
Tuğçe Küçükoğlu 2022-08-10 16:45:47 +03:00
parent 1a43e8a6f2
commit ca9bdc2892
2 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@ import ProductService from '../../service/ProductService';
import InplaceDoc from './InplaceDoc'; import InplaceDoc from './InplaceDoc';
export default { export default {
data() { data() {
return { return {
text: null, text: null,
products: null products: null
@ -69,7 +69,7 @@ export default {
}, },
methods: { methods: {
loadData() { loadData() {
this.productService.getProductsSmall().then(data => this.products = data); this.productService.getProductsSmall().then(data => this.products = data);
} }
}, },
components: { components: {

View File

@ -66,7 +66,7 @@ import Inplace from 'primevue/inplace';
import CarService from '../../service/CarService'; import CarService from '../../service/CarService';
export default { export default {
data() { data() {
return { return {
cars: null cars: null
} }
@ -77,7 +77,7 @@ export default {
}, },
methods: { methods: {
loadData() { loadData() {
this.carService.getCarsSmall().then(data => this.cars = data); this.carService.getCarsSmall().then(data => this.cars = data);
} }
} }
} }
@ -250,7 +250,7 @@ export default {
import ProductService from './service/ProductService'; import ProductService from './service/ProductService';
export default { export default {
data() { data() {
return { return {
text: null, text: null,
products: null products: null
@ -262,7 +262,7 @@ export default {
}, },
methods: { methods: {
loadData() { loadData() {
this.productService.getProductsSmall().then(data => this.products = data); this.productService.getProductsSmall().then(data => this.products = data);
} }
} }
} }