de/core/frontend/src/components/dataease/DeContainer.vue
2023-08-24 17:34:35 +08:00

28 lines
389 B
Vue

<template>
<el-container class="ms-container">
<slot />
</el-container>
</template>
<script>
export default {
name: 'DeContainer'
}
</script>
<style scoped>
.ms-container ::v-deep span.title {
font-size: 16px;
font-weight: 500;
margin-top: 0;
text-overflow: ellipsis;
overflow: hidden;
word-wrap: break-word;
white-space: nowrap;
}
</style>