Skip to content

Instantly share code, notes, and snippets.

@mazlum
Last active April 3, 2020 16:01
Show Gist options
  • Save mazlum/f9e7193652b51ea2d09999fd26715826 to your computer and use it in GitHub Desktop.
Save mazlum/f9e7193652b51ea2d09999fd26715826 to your computer and use it in GitHub Desktop.
Vue async component
<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