forked from dyf/dyf-vue-ui
37 lines
638 B
Vue
37 lines
638 B
Vue
<template>
|
|
<div class="app-container home">
|
|
<el-row :gutter="20">
|
|
<el-col :sm="24" :lg="12">
|
|
<div class="kfzIMG">
|
|
<img src="@/assets/images/kfz.png" alt="" class="kfIMG">
|
|
<p>功能开发中....敬请期待</p>
|
|
</div>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
<el-divider />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Index" lang="ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.home {
|
|
.kfzIMG {
|
|
left: 50%;
|
|
top: 50%;
|
|
position: absolute;
|
|
transform: translate(-50%, 100%);
|
|
text-align: center;
|
|
}
|
|
|
|
.kfIMG {
|
|
width: 60%;
|
|
}
|
|
}
|
|
.el-divider--horizontal{
|
|
border: none;
|
|
}
|
|
</style>
|