Last active
April 3, 2020 16:01
-
-
Save mazlum/f9e7193652b51ea2d09999fd26715826 to your computer and use it in GitHub Desktop.
Vue async component
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> | |
<transition name="fade" mode="out-in"> | |
<component | |
ref="asyncComponent" | |
:is="asyncComponent" | |
v-bind.sync="$attrs" | |
@reload="getComponent" | |
v-on="$listeners" | |
/> | |
</transition> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment