yudao-init/src/views/copilot/components/charts/ChipOutput.vue

39 lines
576 B
Vue
Raw Normal View History

2024-04-18 17:01:10 +08:00
<!--
filename: ChipOutput.vue
author: liubin
date: 2024-04-17 09:55:12
description:
-->
<template>
2024-04-26 11:23:40 +08:00
<DoubleRingWrapperVue data-source="芯片产出" :period="period" />
2024-04-18 17:01:10 +08:00
</template>
<script>
import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
export default {
name: "ChipOutput",
components: { DoubleRingWrapperVue },
2024-04-25 14:55:23 +08:00
props: {
period: {
type: String,
default: "日",
},
},
2024-04-18 17:01:10 +08:00
data() {
2024-04-26 11:23:40 +08:00
return {};
2024-04-18 17:01:10 +08:00
},
};
</script>
<style scoped lang="scss">
.flex-1 {
flex: 1;
}
.stretch {
align-self: stretch;
}
</style>