hansen-tool
Version:
web的一些工具集函数,包括(树形菜单转换、本地存储、文件下载、文件大小单位转换、金额格式化、浏览器判断)等
27 lines (25 loc) • 460 B
JavaScript
import { treeToArray } from "../release/index.esm.js";
const tree = [
{
id: 1,
name: "节点1",
children: [
{
id: 2,
name: "节点1-1",
children: [
{
id: 4,
name: "节点1-1-1",
},
],
},
{
id: 3,
name: "节点1-2",
},
],
},
];
const result = treeToArray(tree);
console.log(typeof result, result);