
- 更新 @types/node 版本至 24.3.0 - 更新 @vue/tsconfig 版本至 0.8.0 - 更新 eslint-plugin-oxlint 和 oxlint 版本至 1.12.0 - 优化 HCesiumManager 中的卫星实体创建逻辑 - 修复 ShadcnVue 页面中的 Button 组件用法 - 优化 Button 组件的 Props 类型定义 - 更新 buttonVariants 的导入路径
29 lines
675 B
Vue
29 lines
675 B
Vue
<script setup lang="ts">
|
|
import type { PrimitiveProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import type { ButtonVariants } from "."
|
|
import { Primitive } from "reka-ui"
|
|
import { cn } from '@/shadcn/lib/utils'
|
|
import { buttonVariants } from "."
|
|
|
|
interface Props extends PrimitiveProps {
|
|
variant?: ButtonVariants["variant"]
|
|
size?: ButtonVariants["size"]
|
|
class?: HTMLAttributes["class"]
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
as: "button",
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
:as="props.as"
|
|
:as-child="props.asChild"
|
|
:class="cn(buttonVariants({ variant, size }), props.class)"
|
|
>
|
|
<slot />
|
|
</Primitive>
|
|
</template>
|