@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studio-west/component-sw",
3
- "version": "0.11.12",
3
+ "version": "0.11.13",
4
4
  "description": "Vue components of Component-SW collection.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -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))