![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
vue3-transition-expand
Advanced tools
This is a Vue 3 plugin to transition element to `height: auto;` based on [Markus Oberlehner article](https://markus.oberlehner.net/blog/transition-to-height-auto-with-vue/).
This is a Vue 3 plugin to transition element to height: auto;
based on Markus
Oberlehner article.
npm install vue3-transition-expand
# or
yarn add vue3-transition-expand
import TransitionExpand from 'vue3-transition-expand'
Vue.use(TransitionExpand, {
// optional global options (see below)
})
import { TransitionExpand } from 'vue3-transition-expand';
export default {
components: {
TransitionExpand,
},
data () {
return {
expanded: false,
};
},
}
import TransitionExpand from 'vue3-transition-expand';
import 'vue3-transition-expand/dist/style.css';
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(TransitionExpand, {
// optional global options (see below)
})
});
interface PluginOptions {
componentName?: string; // default 'TransitionExpand'
duration?: number; // default 300
}
export interface Props {
expanded: boolean; // default false
duration?: number; // default: 300
}
<TransitionExpand :expanded="expanded">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</TransitionExpand>
<button @click="expanded = !expanded">{{ !expanded ? 'Expand' : 'Collapse' }}</button>
FAQs
This is a Vue 3 plugin to transition element to `height: auto;` based on [Markus Oberlehner article](https://markus.oberlehner.net/blog/transition-to-height-auto-with-vue/).
We found that vue3-transition-expand 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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.