Like jQuery's slideUp / slideDown / slideToggle, but for Vue!
Demo: https://codepen.io/danieldiekmeier/pen/YapGWq
npm i vue-slide-up-downimport { createApp } from 'vue'
import SlideUpDown from 'vue-slide-up-down'
const app = createApp({ ... })
app.component('slide-up-down', SlideUpDown)Note
Version 3 of this package is only compatible with Vue 3. If you're still on Vue 2, install the previous version with npm i vue-slide-up-down@2
<div class="MyContent">
  <h1>Always show this</h1>
  <slide-up-down :active="active" :duration="1000">
    Only show this if "active” is true
  </slide-up-down>
</div>The component takes four props:
- 
active(Boolean, required): Whether to show the component (true) or not (false)
- 
duration(Number, optional): How long the animation is supposed to be, in milliseconds. Defaults to500.
- 
tag(String, optional): Which HTML tag to use for the wrapper element. Defaults todiv.
- 
use-hidden(Boolean, optional): Whether to apply thehiddenattribute to the element when closed. Defaults totrue. This hides the component from the screen and from assistive devices. The internal elements of the component are completely invisible, and can't be focused (by a keyboard or assistive device). (This is probably what you want!)If you really need to, you can set this property to falseto not use thehiddenattribute. For example if you want to have amin-heighton your component and not actually transition to a height of0.⚠️ Be aware that this can create accessibility issues, specifically for users with a keyboard or screen reader. Even though the component may appear hidden, focusable elements within the component are still able to be accessed through keyboard navigation.
The component emits four events:
- open-start
- open-end
- close-start
- close-end
<slide-up-down @close-end="console.log('done closing!')" />If you want to use a different timing function, add some CSS for your <slide-up-down> element. (See demo/index.html for a full example.)
<style>
  .wobbly-accordion {
    transition-timing-function: cubic-bezier(0.195, 1.65, 0.435, -0.6);
  }
</style>
<slide-up-down class="wobbly-accordion">
  Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta omnis velit
  ab culpa, officia, unde nesciunt temporibus cum reiciendis distinctio.
</slide-up-down>