x-php-Admin/copy backup/template/layout/blank.vue

18 lines
220 B
Vue
Raw Normal View History

2023-06-07 10:48:30 +00:00
<template>
<el-empty :image-size="200" :description="title"></el-empty>
</template>
<script>
export default {
name: 'blank',
data() {
return {
title: "BLANK PAGE :)"
}
}
}
</script>
<style>
</style>