This commit is contained in:
‘937886381’
2024-05-07 10:23:38 +08:00
parent 9ab7010f5b
commit 6cf8eb70b4
17 changed files with 1507 additions and 11 deletions

View File

@@ -0,0 +1,38 @@
<!--
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>