index.vue 440 B

1234567891011121314151617181920
  1. <template>
  2. <div id="index">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
  5. <el-col :span="24" class="one"> 科研机构 </el-col>
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script setup>
  11. // 加载中
  12. const loading = ref(false)
  13. // 请求
  14. onMounted(async () => {
  15. loading.value = true
  16. loading.value = false
  17. })
  18. </script>
  19. <style scoped lang="scss"></style>