dataease-dm/frontend/src/components/dataease/DeContainer.vue

28 lines
384 B
Vue
Raw Normal View History

2021-03-03 15:06:52 +08:00
<template>
<el-container class="ms-container">
2021-03-03 17:38:41 +08:00
<slot />
2021-03-03 15:06:52 +08:00
</el-container>
</template>
<script>
2021-03-03 17:38:41 +08:00
export default {
name: 'DeContainer'
2021-03-03 17:38:41 +08:00
}
2021-03-03 15:06:52 +08:00
</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>