| 1234567891011121314151617181920212223 |
- <script setup lang="ts">
- import { onMounted, reactive, ref } from "vue";
- const Render = () => {
- // 重新渲染
- // hotRef.value && hotRef.value.Render();
- console.log("bottom tabs render");
- };
- defineExpose({
- Render,
- });
- </script>
- <template>
- <el-tabs type="border-card" class="bottom-tabs">
- <el-tab-pane label="定额/工料机">定额/工料机</el-tab-pane>
- <el-tab-pane label="清单对比">清单对比</el-tab-pane>
- <el-tab-pane label="价格曲线图">价格曲线图</el-tab-pane>
- </el-tabs>
- </template>
- <style lang="scss" src="./style.scss" scoped></style>
|