mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-10 13:55:00 +00:00
31 lines
692 B
Vue
31 lines
692 B
Vue
|
<template>
|
|||
|
<div class="content">
|
|||
|
<a-result class="result" status="404" :subtitle="'not found'"> </a-result>
|
|||
|
<div class="operation-row">
|
|||
|
<a-button key="back" type="primary" @click="back"> back </a-button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script lang="ts" setup>
|
|||
|
import { useRouter } from 'vue-router';
|
|||
|
|
|||
|
const router = useRouter();
|
|||
|
const back = () => {
|
|||
|
// warning: Go to the node that has the permission
|
|||
|
router.push({ name: 'Workplace' });
|
|||
|
};
|
|||
|
</script>
|
|||
|
|
|||
|
<style scoped lang="less">
|
|||
|
.content {
|
|||
|
// padding-top: 100px;
|
|||
|
position: absolute;
|
|||
|
top: 50%;
|
|||
|
left: 50%;
|
|||
|
margin-left: -95px;
|
|||
|
margin-top: -121px;
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
</style>
|