import type { DslDefinition } from '@oinone/kunlun-dsl'; import type { PropType } from 'vue'; /** * 组件标签属性 */ export const WidgetTagProps = { handle: { type: String }, dslDefinition: { type: Object as PropType }, slotName: { type: String }, inline: { type: Boolean, default: undefined }, slotContext: { type: Object } };