dataease-dm/frontend/src/components/dataease/DeContainer.vue
2021-03-16 17:53:43 +08:00

28 lines
384 B
Vue

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