@@ -0,0 +1,59 @@
+<template>
+ <div class="Help">
+
+ <div class="main" >
+ </div>
+</template>
+<script setup lang="ts">
+import { onMounted, reactive, computed, watch, onUnmounted, nextTick, ref } from 'vue';
+import { useRoute } from 'vue-router';
+onMounted(() => {
+});
+</script>
+<style lang="scss" scoped>
+.Help * {
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ -khtml-user-select: none;
+ user-select: none;
+}
+.Help {
+ position: fixed;
+ width: 0px;
+ height: 0px;
+ top: 0px;
+ left: 0px;
+ z-index: 1000;
+ .main {
+ width: 100%;
+ height: 100%;
+ }
+</style>