10 lines
375 B
JavaScript
Vendored
10 lines
375 B
JavaScript
Vendored
export default {
|
|
methods: {
|
|
getDefaultImage(category = 1) {
|
|
return "https://cdn.motorradhandel.ch/media/categories/def_images/motorradhandel_missing_image_" + category + ".png";
|
|
},
|
|
getDefaultMPImage(category = 1) {
|
|
return "https://cdn.motorradhandel.ch/media/categories/def_images/motorradhandel_mp_missing_image_" + category + ".png";
|
|
},
|
|
}
|
|
}; |