28 lines
		
	
	
		
			342 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			342 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
| 	<div class="notmsg">暂无数据</div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
| 	name: 'NotMsg',
 | |
| 	components: {},
 | |
| 	data() {
 | |
| 		return {
 | |
| 		};
 | |
| 	},
 | |
| 	computed: {
 | |
| 	},
 | |
| 	methods: {
 | |
| 	},
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style scoped lang="scss">
 | |
| .notmsg {
 | |
| 	padding-top: 72px;
 | |
| 	color: rgba(255, 255, 255, 0.4);
 | |
| 	text-align: center;
 | |
| 	font-size: 24px;
 | |
| }
 | |
| </style>
 |