import { parse } from "@/cool"; import type { ClCascaderOption, ClListViewItem } from "../types"; export function useListView(data: UTSJSONObject[]) { return data.map((e) => parse(e)!); } export function useCascader(data: UTSJSONObject[]) { return data.map((e) => parse(e)!); }