From ba24a1803af64408f180186f0698429094762631 Mon Sep 17 00:00:00 2001 From: nightswinger Date: Thu, 2 May 2024 15:34:48 +0000 Subject: [PATCH] add DisabledDoc for Card --- .../src/components/views/Card/DisabledDoc.vue | 50 +++++++++++++++++++ docs/src/pages/views/Card.vue | 7 +++ 2 files changed, 57 insertions(+) create mode 100644 docs/src/components/views/Card/DisabledDoc.vue diff --git a/docs/src/components/views/Card/DisabledDoc.vue b/docs/src/components/views/Card/DisabledDoc.vue new file mode 100644 index 0000000..94a97d0 --- /dev/null +++ b/docs/src/components/views/Card/DisabledDoc.vue @@ -0,0 +1,50 @@ + + + diff --git a/docs/src/pages/views/Card.vue b/docs/src/pages/views/Card.vue index 2ce3537..7f8c53d 100644 --- a/docs/src/pages/views/Card.vue +++ b/docs/src/pages/views/Card.vue @@ -23,6 +23,7 @@ import DescriptionDoc from '@/components/views/Card/DescriptionDoc.vue' import ExtraContentDoc from '@/components/views/Card/ExtraContentDoc.vue' // States +import DisabledDoc from '@/components/views/Card/DisabledDoc.vue' // Variations import FluidCardDoc from '@/components/views/Card/FluidCardDoc.vue' @@ -93,6 +94,12 @@ const docs = [ category: 'Content', component: ExtraContentDoc, }, + { + id: 'disabled', + label: 'Disabled', + category: 'States', + component: DisabledDoc, + }, { id: 'fluid-card', label: 'Fluid Card',