123456789101112131415161718192021222324 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight">
- <el-col :span="24" class="one">
- <bTable :type="type"></bTable>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup lang="ts">
- // 基础
- import type { Ref } from 'vue';
- import { ref } from 'vue';
- //类型
- const type: Ref<string> = ref('5');
- </script>
- <style scoped lang="scss">
- .main {
- padding: 2px;
- }
- </style>
|