yudao-init/src/views/copilot/components/charts/StdOutput.vue
DESKTOP-FUDKNA8\znjsz a262fb96d4 update home
2024-04-18 17:01:10 +08:00

34 lines
464 B
Vue

<!--
filename: StdOutput.vue
author: liubin
date: 2024-04-17 09:55:12
description:
-->
<template>
<DoubleRingWrapperVue />
</template>
<script>
import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
export default {
name: "StdOutput",
components: { DoubleRingWrapperVue },
props: {},
data() {
return {};
},
};
</script>
<style scoped lang="scss">
.flex-1 {
flex: 1;
}
.stretch {
align-self: stretch;
}
</style>