Dashboard.vue 771 Bytes
<template>
    <div class="Dashboard">
      <a-layout class="content" style="padding: 24px 0; background: #fff;min-height: calc(100vh - 149px)">
        <div><img src="../../assets/Welcome.png"/></div>
        <div>欢迎您进入mingwork管理后台</div>
      </a-layout>
    </div>
</template>

<script>
export default {
  name: 'dashboard',
  components: {},
  data () {
    return {}
  },
  watch: {},
  computed: {},
  methods: {},
  mounted () {}
}
</script>

<style scoped>
.content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
  height: 500px;
}
.content>div:nth-of-type(2){
  font-size: 20px;
}
.content image {
  width: 395px;
  height: 260px;
}
.content>div:nth-of-type(1){
  margin-right: 88px;
}
</style>