auto-animate
auto-animate copied to clipboard
How to animate single element?
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>