de/frontend/src/views/system/datasource/DataHome.vue
2021-06-17 18:58:46 +08:00

26 lines
458 B
Vue

<template>
<el-col style="height: 100%;">
<el-row style="height: 100%;" class="custom-position">
{{ $t('datasource.please_select_left') }}
</el-row>
</el-col>
</template>
<script>
export default {
name: 'DataHome'
}
</script>
<style scoped>
.custom-position {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
flex-flow: row nowrap;
color: #9ea6b2;
}
</style>