|
@@ -1,13 +1,19 @@
|
|
|
<template>
|
|
|
<div id="index">
|
|
|
<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>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<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>
|
|
|
<style scoped lang="scss"></style>
|