Files
vue-pure-admin/src/views/empty/index.vue

43 lines
926 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import { useRouter } from "vue-router";
import back from "@/assets/svg/back.svg?component";
defineOptions({
name: "Empty"
});
const router = useRouter();
</script>
<template>
<div class="w-full h-full text-center">
<h1>业务内容模块</h1>
<p>使用场景需要外嵌平台某个页面不需要展示菜单导航以及额外模块</p>
<div class="back" title="返回上一页" @click="router.go(-1)">
<back class="w-[80px] h-[80px]" />
</div>
</div>
</template>
<style lang="scss" scoped>
.back {
position: relative;
top: 50%;
left: 50%;
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 200px;
cursor: pointer;
background: rgb(138 150 160 / 8%);
border-radius: 18px;
transform: translate(-50%, -50%);
&:hover {
background: rgb(138 150 160 / 20%);
transition: background 0.6s;
}
}
</style>