mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-12-09 14:40:27 +08:00
56 lines
890 B
Vue
56 lines
890 B
Vue
<template>
|
|
<div class="debug" :class="{ open }" @click="open = !open">
|
|
<pre>debug</pre>
|
|
<pre>$page {{ $page }}</pre>
|
|
<pre>$siteByRoute {{ $siteByRoute }}</pre>
|
|
<pre>$site {{ $site }}</pre>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ref } from 'vue'
|
|
|
|
export default {
|
|
setup() {
|
|
const open = ref(false)
|
|
return {
|
|
open
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.debug {
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
z-index: 999;
|
|
cursor: pointer;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 80px;
|
|
height: 30px;
|
|
padding: 5px;
|
|
overflow: hidden;
|
|
color: #eeeeee;
|
|
transition: all .15s ease;
|
|
background-color: rgba(0,0,0,0.85);
|
|
}
|
|
|
|
.debug.open {
|
|
width: 500px;
|
|
height: 100%;
|
|
margin-top: 0;
|
|
padding: 0 0;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.debug pre {
|
|
font-family: Hack, monospace;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|