auto-animate icon indicating copy to clipboard operation
auto-animate copied to clipboard

How to animate single element?

Open nestle49 opened this issue 1 year ago • 0 comments

How to animate single element? For example

<template>
<div v-if="content">Content</div>

<button @click="content = !content">Toggle</button>
</template>

<script setup>
const content = true;
</script>

nestle49 avatar Mar 27 '24 12:03 nestle49