22 lines
477 B
Vue
22 lines
477 B
Vue
<template lang="pug">
|
|
#app
|
|
um-header(v-if="!['login'].includes($route.name)")
|
|
transition(name="router-anim" enter-active-class="animated slideInLeft")
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
import UmFooter from './layout/Footer.vue'
|
|
import UmHeader from './layout/Header.vue'
|
|
require('vue2-animate/dist/vue2-animate.min.css')
|
|
export default {
|
|
name: 'app',
|
|
components: { UmHeader, UmFooter }
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './scss/main.scss';
|
|
|
|
</style>
|