forked from github/dataease
28 lines
401 B
Vue
28 lines
401 B
Vue
|
<template>
|
||
|
|
||
|
<el-container class="ms-container">
|
||
|
<slot></slot>
|
||
|
</el-container>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "MsContainer"
|
||
|
}
|
||
|
</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>
|