index.vue 330 B

123456789101112131415
  1. <template>
  2. <div id="home-1">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight">
  5. <component :is="web1"></component>
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. import web1 from '@/components/common/web/index.vue';
  12. </script>
  13. <style scoped></style>