mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
import { defineStore } from "pinia";
|
|
export const useMenuStore = defineStore("menu", {
|
|
state: () => {
|
|
return {
|
|
thirdLevelLinks: []
|
|
};
|
|
},
|
|
actions: {
|
|
updateThirdLevelLinks(links) {
|
|
this.thirdLevelLinks = links;
|
|
}
|
|
}
|
|
});
|