TreeView in Vue not rendering subfolder content correctly

孤者浪人 提交于 2020-08-10 19:17:39

问题


I'm trying to build a TreeView from scratch in Vue. This is my code so far.

The first problem I'm encountering is that the content of the subfolders (like child folder 1) is not being displayed. The second problem is that minimizing the subfolders minimizes the whole treeview.

Could anyone help me understand why these two errors in functionality are occurring and how to fix them?


回答1:


  1. your code only dealed with the first level of your folders, you should recursively revoke your tree components to deal with child folders. please refer to below article.

https://itnext.io/recursion-for-nested-tree-structure-components-in-vue-1cb600005475

  1. your code is using one param (isOpen) to toggle minimizing all folders, so if isOpen is false, all folders minimized; you should use item.isOpen to deal with different item;
treeData: {
        name: "My Tree",
        isOpen: true,
        children: [
          { name: "hello" },
          { name: "wat" },
          {
            name: "child folder",
            isOpen: false,
            children: [
              {
                name: "child folder 1",
                isOpen: false,
                children: [{ name: "hello" }, { name: "wat" }]
              },
              { name: "hello" },
              { name: "wat" },
              {
                name: "child folder 2",
                isOpen: false,
                children: [{ name: "hello" }, { name: "wat" }]
              }
            ]
          }
        ]
      }
    };


来源:https://stackoverflow.com/questions/63108178/treeview-in-vue-not-rendering-subfolder-content-correctly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!