import AppList from "../../components/list/index.js"; import html from "html"; import useConfig from "../../models/code-setting.js"; export default { components: { AppList }, template: html``, setup() { const config = useConfig(); const onCommand = async (item, rows) => { console.log(item.path, item, rows); }; return { config, onCommand }; }, };