From 66cf178cc3e59aa8e5486bccdab44d8a0a98e93b Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 6 Mar 2024 16:28:12 +0100 Subject: [PATCH] chore(Container): remove `ui` prop --- src/runtime/components/Container.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/runtime/components/Container.vue b/src/runtime/components/Container.vue index a0603b4c..34854832 100644 --- a/src/runtime/components/Container.vue +++ b/src/runtime/components/Container.vue @@ -9,7 +9,6 @@ const appContainer = tv(theme) export interface ContainerProps { as?: string class?: any - ui?: Partial } @@ -20,17 +19,16 @@ defineOptions({ inheritAttrs: false }) const props = withDefaults(defineProps(), { as: 'div', - class: undefined, - ui: undefined + class: undefined }) // Computed -const ui = computed(() => tv({ extend: appContainer, ...props.ui })({ class: props.class })) +const base = computed(() => appContainer({ class: props.class })) \ No newline at end of file