mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-24 16:27:23 +08:00
首页 歌手推荐 歌单分类 最热音乐没写完
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user