import { Module } from 'vuex'; // 此处加上 `.ts` 后缀报错,具体原因不详 import { KeepAliveNamesState, RootStateTypes } from '/@/store/interface/index'; const keepAliveNamesModule: Module = { namespaced: true, state: { keepAliveNames: [], }, mutations: { // 设置路由缓存(name字段) getCacheKeepAlive(state: any, data: Array) { state.keepAliveNames = data; }, }, actions: { // 设置路由缓存(name字段) async setCacheKeepAlive({ commit }, data: Array) { commit('getCacheKeepAlive', data); }, }, }; export default keepAliveNamesModule;