Files
dataease/core/core-frontend
Minamiyama 8fa1978748 feat(component-background): 添加对独立圆角半径的控制支持
实现组件背景圆角的独立控制功能,允许分别设置四个角的半径值。新增 CornerValues 接口和 borderRadius2 属性,并在 UI 中提供三种模式(统一、对称、独立)的配置选项。同时更新 Shape.vue 组件以支持新的圆角渲染逻辑。

修改包括:
1. 在 Types.ts 中新增 CornerValues 接口
2. 在 BackgroundOverallCommon.vue 中实现圆角配置界面
3. 在 Shape.vue 中更新圆角样式计算逻辑
2025-10-13 18:27:26 +08:00
..
2024-09-25 09:45:25 +08:00
2025-08-14 11:47:47 +08:00
2025-08-14 11:47:47 +08:00
2025-06-03 17:02:12 +08:00

Vue 3 + TypeScript + Vite

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.