I have linked an image with the following code
<img title="head" :src="availableParts.heads[selectNextHeadIndex].src"/>
This image is called from a JSON file:
{
id: 1,
description:
'A robot head with an unusually large eye and teloscpic neck -- excellent for exploring high spaces.',
title: 'Large Cyclops',
src: images('./head-big-eye.png'),
type: 'heads',
cost: 1225.5,
},
The image displays with added numbers in the name, as shown in the screenshot. How can I remove the numbers and keep it simple like this head-big-eye.png
?