首页 歌手推荐 歌单分类 最热音乐没写完

This commit is contained in:
algerkong
2021-07-20 15:29:20 +08:00
parent eed1211c6a
commit 778c2c1672
15 changed files with 553 additions and 32 deletions
+30
View File
@@ -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;