2023-09-26 10:29:20 +08:00

25 lines
447 B
Vue

<script setup lang="ts">
import Node from '../Node/index.vue'
import {CcNode} from '../Cc/index'
import Content from './content.vue'
export interface ApprovalProps {
node: CcNode
}
withDefaults(defineProps<ApprovalProps>(), {})
</script>
<template>
<Node icon="Promotion"
v-bind="$attrs"
color="rgb(50, 150, 250)"
:node="node">
<Content :node="node"/>
</Node>
</template>
<style scoped lang="scss">
</style>