11 lines
280 B
Vue
11 lines
280 B
Vue
<script setup>
|
|
import { ref, onMounted, nextTick } from "vue";
|
|
import Container from "../Base/Container.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Container class="chart" title="累计生产线成品率" icon="cube">
|
|
<p class="empty-data-hint">暂无数据</p>
|
|
</Container>
|
|
</template>
|