yudao-init/src/views/copilot/efficiency/components/StdOutput.vue
‘937886381’ 6cf8eb70b4 保存
2024-05-07 10:23:38 +08:00

39 lines
584 B
Vue

<!--
filename: StdOutput.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: "StdOutput",
components: { DoubleRingWrapperVue },
props: {
period: {
type: String,
default: "日",
},
},
data() {
return {};
},
};
</script>
<style scoped lang="scss">
.flex-1 {
flex: 1;
}
.stretch {
align-self: stretch;
}
</style>