人生啊人生 3 viikkoa sitten
vanhempi
säilyke
d7f8868a1b
1 muutettua tiedostoa jossa 43 lisäystä ja 0 poistoa
  1. 43 0
      user_web/src/components/student/courseChapter3d/showDownHole.vue

+ 43 - 0
user_web/src/components/student/courseChapter3d/showDownHole.vue

@@ -0,0 +1,43 @@
+<!-- 完成说明 -->
+<script setup lang="ts">
+import { onMounted, watch, ref } from 'vue';
+import { courseChapter3dShow } from "@/stores/courseChapter3dShow.ts";
+
+// watch(
+//     () => courseChapter3dShow().show.showCongratulationsViewBool,
+//     (newVal, oldVal) => {
+//     }
+// );
+
+</script>
+
+<template>
+
+    <div class="showDownHole">
+        
+    </div>
+    
+</template>
+
+<style lang="scss" scoped>
+
+    .showDownHole * {
+
+        -moz-user-select: none;
+        -webkit-user-select: none;
+        -ms-user-select: none;
+        -khtml-user-select: none;
+        user-select: none;
+
+        /*固定宽度,设置内边距,不会影响宽度和高度的自增*/
+        box-sizing:border-box;
+        -moz-box-sizing:border-box; /* Firefox */
+        -webkit-box-sizing:border-box; /* Safari */
+        
+    }
+
+    .showDownHole {
+    
+    }
+
+</style>