Last active
April 28, 2022 05:17
-
-
Save jakedohm/922481dbe3195decc4b5369661bc13cc to your computer and use it in GitHub Desktop.
Smooth Reflow (Vue)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<SmoothReflow> | |
<div>My height will change at some point, and the SmoothReflow component | |
will automatically make sure that it animates</div> | |
</SmoothReflow> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<slot /> | |
</div> | |
</template> | |
<script> | |
import smoothReflow from 'vue-smooth-reflow' | |
export default { | |
mixins: [smoothReflow], | |
mounted(){ | |
this.$smoothReflow() | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment