1234567891011121314151617181920 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
- <el-col :span="24" class="one"> 企业 </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup>
- // 加载中
- const loading = ref(false)
- // 请求
- onMounted(async () => {
- loading.value = true
- loading.value = false
- })
- </script>
- <style scoped lang="scss"></style>
|