guhongwei 2 years ago
parent
commit
75770b3f9f
1 changed files with 9 additions and 3 deletions
  1. 9 3
      src/views/home/index.vue

+ 9 - 3
src/views/home/index.vue

@@ -1,13 +1,19 @@
 <template>
 <template>
   <div id="index">
   <div id="index">
     <el-row>
     <el-row>
-      <el-col :span="24" class="main"> test </el-col>
+      <el-col :span="24" class="main animate__animated animate__backInRight">
+        <el-col :span="24" class="one">系统首页</el-col>
+      </el-col>
     </el-row>
     </el-row>
   </div>
   </div>
 </template>
 </template>
 
 
 <script setup lang="ts">
 <script setup lang="ts">
-import type { Ref } from 'vue';
-import { ref, toRefs } from 'vue';
+// 基础
+// import type { Ref } from 'vue';
+// reactive, ref, onMounted
+import { onMounted } from 'vue';
+// 请求
+onMounted(async () => {});
 </script>
 </script>
 <style scoped lang="scss"></style>
 <style scoped lang="scss"></style>