@studio-west/component-sw 0.11.12 → 0.11.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -230,6 +230,8 @@ onMounted(() => {
|
|
|
230
230
|
const columnVNodes = slots.default?.() || []
|
|
231
231
|
// columns.value = extractLeafColumns(columnVNodes)
|
|
232
232
|
columnTree.value = buildColumnTree(columnVNodes)
|
|
233
|
+
console.log('SwTable mounted - columnTree:', columnTree.value)
|
|
234
|
+
console.log('SwTable mounted - data:', props.data)
|
|
233
235
|
})
|
|
234
236
|
// Вычисляемые свойства
|
|
235
237
|
const maxDepth = computed(() => getMaxDepth(columnTree.value))
|