-
+ |
Cloud Database
@@ -43,7 +43,7 @@ exports[`Descriptions Descriptions.Item support className 1`] = `
-
+ |
ProductCloud Database
|
@@ -93,11 +93,29 @@ exports[`Descriptions vertical layout 1`] = `
+
+
+
+
+ Cloud Database
+
+ |
+
+
Billing
|
+
+
+
+
+ Prepaid
+
+ |
+
+
time
@@ -105,16 +123,6 @@ exports[`Descriptions vertical layout 1`] = `
|
-
-
- Cloud Database
-
- |
-
-
- Prepaid
-
- |
18:00:00
@@ -122,14 +130,14 @@ exports[`Descriptions vertical layout 1`] = `
|
-
+ |
Amount
|
-
+ |
$80.00
@@ -151,15 +159,19 @@ exports[`Descriptions when item is rendered conditionally 1`] = `
|
ProductCloud Database
|
+
+
BillingPrepaid
|
+
+
time18:00:00
|
-
+ |
Amount$80.00
|
diff --git a/components/descriptions/index.tsx b/components/descriptions/index.tsx
index c1abdda41..2234bd7e3 100644
--- a/components/descriptions/index.tsx
+++ b/components/descriptions/index.tsx
@@ -9,7 +9,15 @@ import type {
CSSProperties,
InjectionKey,
} from 'vue';
-import { ref, defineComponent, onMounted, onBeforeUnmount, provide, toRef, computed } from 'vue';
+import {
+ onBeforeMount,
+ ref,
+ defineComponent,
+ onBeforeUnmount,
+ provide,
+ toRef,
+ computed,
+} from 'vue';
import warning from '../_util/warning';
import type { Breakpoint, ScreenMap } from '../_util/responsiveObserve';
import ResponsiveObserve, { responsiveArray } from '../_util/responsiveObserve';
@@ -78,7 +86,6 @@ function getFilledItem(node: VNode, span: number | undefined, rowRestCol: number
clone = cloneElement(node, {
span: rowRestCol,
});
-
warning(
span === undefined,
'Descriptions',
@@ -95,7 +102,6 @@ function getRows(children: VNode[], column: number) {
let tmpRow: VNode[] = [];
let rowRestCol = column;
-
childNodes.forEach((node, index) => {
const span: number | undefined = node.props?.span;
const mergedSpan = span || 1;
@@ -155,17 +161,13 @@ const Descriptions = defineComponent({
Item: DescriptionsItem,
setup(props, { slots }) {
const { prefixCls, direction } = useConfigInject('descriptions', props);
-
let token: number;
-
const screens = ref({});
-
- onMounted(() => {
+ onBeforeMount(() => {
token = ResponsiveObserve.subscribe(screen => {
if (typeof props.column !== 'object') {
return;
}
-
screens.value = screen;
});
});
|