You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
413 B
16 lines
413 B
1 year ago
|
import AppList from "../components/list/index.js";
|
||
|
import html from "html";
|
||
|
import router from "../router/index.js";
|
||
|
|
||
|
export default {
|
||
|
components: { AppList },
|
||
|
template: html`<app-list @command="onCommand"> </app-list>`,
|
||
|
setup() {
|
||
|
console.log(router.currentRoute.value.fullPath);
|
||
|
const onCommand = (item, rows) => {
|
||
|
console.log(item.path, item, rows);
|
||
|
};
|
||
|
return { onCommand };
|
||
|
},
|
||
|
};
|