人生啊人生 1 mese fa
parent
commit
61b742d5c7
3 ha cambiato i file con 59 aggiunte e 0 eliminazioni
  1. BIN
      src/assets/help/bg.webp
  2. BIN
      src/assets/help/exit.webp
  3. 59 0
      src/components/Help/Help.vue

BIN
src/assets/help/bg.webp


BIN
src/assets/help/exit.webp


+ 59 - 0
src/components/Help/Help.vue

@@ -0,0 +1,59 @@
+<template>
+    <div class="Help">
+
+        <div class="main" >
+
+        </div>
+    
+    </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 {
+        position: fixed;
+        top: 0px;
+        left: 0px;
+        width: 100%;
+        height: 100%;
+    }
+
+}
+
+
+</style>
+
+
+
+
+
+
+
+
+
+