12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <!--暂无数据提示-->
- <div class="mm-no-result">
- <p class="mm-no-result-text">{{ title }}</p>
- </div>
- </template>
- <script>
- export default {
- name: 'MmNoResult',
- props: {
- // 无数据提示文本
- title: {
- type: String,
- default: ''
- }
- }
- }
- </script>
- <style lang="less">
- .mm-no-result {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- &-text {
- margin-top: 30px;
- font-size: @font_size_medium;
- color: @text_color;
- }
- }
- </style>
|