Skip to content

Commit

Permalink
feat(transitions): minor update, add transition to router views
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Nov 26, 2019
1 parent d7835c1 commit cdf2dc2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
<template>
<div id="admin-marketplace">
<router-view/>
<slide-x-left-transition :duration="{ enter: 400, leave: 0 }">
<router-view/>
</slide-x-left-transition>
</div>
</template>

<script>
import { SlideXLeftTransition } from 'vue2-transitions'
export default {
name: 'AdminMarketplace',
components: {
SlideXLeftTransition
}
}
</script>

0 comments on commit cdf2dc2

Please # to comment.