chore: added hiding rolling stock preview on hover

This commit is contained in:
2026-03-15 23:18:36 +01:00
parent dc0b0315e0
commit f7499fe431
5 changed files with 15 additions and 8 deletions
+3 -1
View File
@@ -7,6 +7,7 @@
:vehicle-string="vehicleString"
:images="images"
:image-fallbacks="imagesFallbacks"
:show-previews="showPreviews"
/>
</li>
</ul>
@@ -23,7 +24,8 @@ export default defineComponent({
props: {
trainStockList: { type: Array as PropType<string[]>, required: true },
tractionOnly: { type: Boolean, required: false }
tractionOnly: { type: Boolean, required: false },
showPreviews: { type: Boolean }
},
data() {