StepItemInternalDotIcon.vue 484 B

1234567891011121314151617181920
  1. <template>
  2. <!-- 默认的圆点图标显示组件 -->
  3. <view :style="{
  4. width: themeContext.resolveSize(size - 20),
  5. height: themeContext.resolveSize(size - 20),
  6. borderRadius: themeContext.resolveSize(size),
  7. backgroundColor: themeContext.resolveThemeColor(color),
  8. }" />
  9. </template>
  10. <script setup lang="ts">
  11. import { useTheme } from '@/components/theme/ThemeDefine';
  12. defineProps<{
  13. color?: string,
  14. size: number,
  15. }>();
  16. const themeContext = useTheme();
  17. </script>