diff --git a/.vitepress/theme/components/ArticleMasonry.vue b/.vitepress/theme/components/ArticleMasonry.vue index da7990b..e1d8d28 100644 --- a/.vitepress/theme/components/ArticleMasonry.vue +++ b/.vitepress/theme/components/ArticleMasonry.vue @@ -69,8 +69,9 @@ onUnmounted(() => {
interface Props { - href?: string; - icon?: string; - text?: string; - color?: "elevated" | "filled" | "tonal" | "outlined" | "standard" | "text"; shape?: "round" | "square"; size?: "xs" | "s" | "m" | "l" | "xl"; + color?: "elevated" | "filled" | "tonal" | "outlined" | "standard" | "text"; + icon?: string; + text?: string; + href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; } const props = withDefaults(defineProps(), { - color: "filled", shape: "round", size: "s", + color: "filled", target: "_blank", }); diff --git a/.vitepress/theme/components/Card.vue b/.vitepress/theme/components/Card.vue index 9b3fd1d..2fa03f0 100644 --- a/.vitepress/theme/components/Card.vue +++ b/.vitepress/theme/components/Card.vue @@ -1,23 +1,21 @@