mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
import { useMenuStore } from "../stores/menu.mjs";
|
|
export const useMenu = (options) => {
|
|
const menu = useMenuStore();
|
|
if (options.thirdLevelLinks) {
|
|
menu.updateThirdLevelLinks(options.thirdLevelLinks);
|
|
}
|
|
};
|