mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-17 10:27:30 +08:00
31 lines
434 B
TypeScript
31 lines
434 B
TypeScript
|
|
import { createStore } from "vuex";
|
||
|
|
|
||
|
|
let state = {
|
||
|
|
menus: [
|
||
|
|
{
|
||
|
|
href: "/",
|
||
|
|
icon: "icon-homefill",
|
||
|
|
text: "hello",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
href: "/main",
|
||
|
|
icon: "icon-peoplefill",
|
||
|
|
text: "hello",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
href: "/",
|
||
|
|
icon: "icon-videofill",
|
||
|
|
text: "hello",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
let mutations = {};
|
||
|
|
|
||
|
|
const store = createStore({
|
||
|
|
state: state,
|
||
|
|
mutations: mutations,
|
||
|
|
});
|
||
|
|
|
||
|
|
export default store;
|