0f94839d
함상기
babylon client fo...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<template>
<div class="exception-body access-denied">
<div class="exception-panel"></div>
<div class="exception-content">
<img src="/layout/images/logo-black.png" alt="babylon-layout" />
<h1><span class="exception-name">ACCESS</span> DENIED</h1>
<p>You don't have the necessary permissions.</p>
<a @click="goDashboard" style="cursor: pointer">Back to Dashboard</a>
</div>
</div>
</template>
<script>
export default {
methods: {
goDashboard() {
this.$router.push({ path: '/' });
},
},
};
</script>
<style scoped></style>
|