dataease-dm/frontend/src/metersphere/common/components/MsContainer.vue

28 lines
401 B
Vue
Raw Normal View History

2021-03-03 15:06:52 +08:00
<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>