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