19 lines
371 B
Vue
19 lines
371 B
Vue
<template>
|
|
<div class="main-center-body">
|
|
<div class="container">
|
|
<el-empty description="页面划走了~" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped>
|
|
.container {
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
|
max-width: 800px;
|
|
width: 100%;
|
|
}
|
|
</style> |