
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
vue3-collapser
Advanced tools
A Vue 3 custom hook for creating a collapsible element with height transition and optional opacity transition. This uses the `MutationObserver` API to observe changes to the target element and updates its height and opacity as needed. It also sets up even
A simple, customizable and highly performant Vue 3 component for collapsing elements with support for transitions and easings.
Features:
It uses the MutationObserver
API to observe changes to the target element and updates its height and opacity as needed. It also sets up event listeners for the resize
event to ensure the collapsing effect is responsive to window changes.
npm install vue3-collapse
You can use register it globally like this:
import vue3Collapse from "vue3Collapse";
import App from "./App.vue";
import { createApp } from "vue";
const app = createApp(App);
app.component("vue3-collapse", vue3Collapse);
then use it this in your component:
<vue3-collapse />
Alternatively, you can use it directly:
<!-- your-component.vue -->
<template>
<vue3-collapse v-model="open" />
</template>
<script>
import { defineComponent } from "vue";
import vue3Collapse from "vue3Collapse";
export default defineComponent({
components: {
vue3Collapse,
},
});
</script>
Vue3Collapse uses v-model to toggle its collapsed state :
<vue3-collapse v-model="open"/>
.
The value of the easing prop can be options (on the left)
Option | Easing function |
---|---|
linear | linear |
ease | ease |
easeIn | ease-in |
easeOut | ease-out |
easeInOut | ease-in-out |
easeInSine | cubic-bezier(0.12, 0, 0.39, 0) |
easeOutSine | cubic-bezier(0.61, 1, 0.88, 1) |
easeInOutSine | cubic-bezier(0.37, 0, 0.63, 1) |
easeInQuad | cubic-bezier(0.11, 0, 0.5, 0) |
easeOutQuad | cubic-bezier(0.5, 1, 0.89, 1) |
easeInOutQuad | cubic-bezier(0.45, 0, 0.55, 1) |
easeInCubic | cubic-bezier(0.32, 0, 0.67, 0) |
easeOutCubic | cubic-bezier(0.33, 1, 0.68, 1) |
easeInOutCubic | cubic-bezier(0.65, 0, 0.35, 1) |
easeInQuart | cubic-bezier(0.5, 0, 0.75, 0) |
easeOutQuart | cubic-bezier(0.25, 1, 0.5, 1) |
easeInOutQuart | cubic-bezier(0.76, 0, 0.24, 1) |
easeInQuint | cubic-bezier(0.64, 0, 0.78, 0) |
easeOutQuint | cubic-bezier(0.22, 1, 0.36, 1) |
easeInOutQuint | cubic-bezier(0.83, 0, 0.17, 1) |
easeInExpo | cubic-bezier(0.7, 0, 0.84, 0) |
easeOutExpo | cubic-bezier(0.16, 1, 0.3, 1) |
easeInOutExpo | cubic-bezier(0.87, 0, 0.13, 1) |
easeInCirc | cubic-bezier(0.55, 0, 1, 0.45) |
easeOutCirc | cubic-bezier(0, 0.55, 0.45, 1) |
easeInOutCirc | cubic-bezier(0.85, 0, 0.15, 1) |
easeInBack | cubic-bezier(0.36, 0, 0.66, -0.56) |
easeOutBack | cubic-bezier(0.34, 1.56, 0.64, 1) |
easeInOutBack | cubic-bezier(0.68, -0.6, 0.32, 1.6) |
FAQs
A Vue 3 custom hook for creating a collapsible element with height transition and optional opacity transition. This uses the `MutationObserver` API to observe changes to the target element and updates its height and opacity as needed. It also sets up even
We found that vue3-collapser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.