web: Expose debug info, fix view on mobile.

This commit is contained in:
2021-10-27 14:02:38 -05:00
parent 21304533f9
commit 3553ce4ea1
15 changed files with 215 additions and 12 deletions

View File

@ -0,0 +1,16 @@
import { defineComponent, ref } from 'vue';
import EyeClosedIcon from '@/components/svg/EyeClosedIcon.vue';
import EyeOpenIcon from '@/components/svg/EyeOpenIcon.vue';
import VERSION from '@/version-info';
export default defineComponent({
name: 'DebugInfo',
components: { EyeOpenIcon, EyeClosedIcon },
setup: function DebugInfo() {
const showDebugInfo = ref(false);
const version = ref(VERSION);
return { showDebugInfo, version };
},
});