Files
gva/QMPlusVuePage/src/view/dashbord/index.vue

30 lines
505 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<h2 style="text-align:center">
gin-vue-admin by 奇淼 And Spike
</h2>
<h4 style="text-align:center">
微信shouzi_1994
</h4>
<Animition />
</div>
</template>
<script>
import { mapGetters } from 'vuex'
import Animition from '@/view/dashbord/component/animition.vue'
export default {
name: 'Dashbord',
computed: {
...mapGetters('user', ['userInfo'])
},
components: {
Animition
}
}
</script>
<style lang="scss" scoped>
</style>