Skip to content

Instantly share code, notes, and snippets.

View picodix's full-sized avatar

Peter Demulsant picodix

View GitHub Profile
<template>
<div class="dev-design" v-show="isShown" :style="{ opacity }">
<img
v-for="(img, i) in imgsUrl"
:src="img"
:key="`img-${i}`"
v-show="currentImg === i"
/>
</div>
</template>