Sample data added

This commit is contained in:
Tuğçe Küçükoğlu 2023-03-10 11:19:45 +03:00
parent 5bede75578
commit 8894099a0a
13 changed files with 206 additions and 16 deletions

View file

@ -83,7 +83,15 @@ const cars = ref();
onMounted(() => {
cars.value = Array.from({ length: 100000 }).map((_, i) => CarService.generateCar(i + 1));
});
<\/script>`
<\/script>`,
data: `
{
id: 1
vin: tvACo,
brand: Norma,
color: Black,
year: 2002
}`
}
};
},