We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd952e8 commit 87f74b6Copy full SHA for 87f74b6
1 file changed
src/grid/Row.mjs
@@ -75,6 +75,22 @@ class Row extends Component {
75
{cn: []}
76
}
77
78
+ /**
79
+ * Triggered after the mounted config got changed
80
+ * @param {Boolean} value
81
+ * @param {Boolean} oldValue
82
+ * @protected
83
+ */
84
+ afterSetMounted(value, oldValue) {
85
+ super.afterSetMounted(value, oldValue);
86
+
87
+ if (this.components) {
88
+ Object.values(this.components).forEach(component => {
89
+ component.mounted = value
90
+ })
91
+ }
92
93
94
/**
95
* Generates the VDOM configuration for a single cell.
96
*
0 commit comments