16 lines
319 B
Vue
16 lines
319 B
Vue
<!-- 页面已移除 -->
|
|
<template>
|
|
<s-layout :bgStyle="{ color: '#FFF' }" class="set-wrap" title="页面已下线">
|
|
<s-empty text="该页面已下线" icon="/static/internet-empty.png" />
|
|
</s-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.set-wrap {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|