gaoshp
2024-06-16 5be78f8d80e78ad76f5f322a0ea1f47105fffe6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
    <el-empty :image-size="200" :description="title"></el-empty>
</template>
 
<script>
    export default {
        name: 'blank',
        data() {
            return {
                title: "BLANK PAGE :)"
            }
        }
    }
</script>
 
<style>
</style>