| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <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>
|