yudao-init/src/views/copilot/yield/components/ChipOutput.vue
2024-04-28 14:55:12 +08:00

39 lines
580 B
Vue

<!--
filename: ChipOutput.vue
author: liubin
date: 2024-04-17 09:55:12
description:
-->
<template>
<DoubleRingWrapperVue data-source="芯片产出" :period="period" />
</template>
<script>
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
export default {
name: "ChipOutput",
components: { DoubleRingWrapperVue },
props: {
period: {
type: String,
default: "日",
},
},
data() {
return {};
},
};
</script>
<style scoped lang="scss">
.flex-1 {
flex: 1;
}
.stretch {
align-self: stretch;
}
</style>