blob: 9f0ab51228b46d9bc3e39e8bbe965fb45615e861 [file]
import store from '../index';
import { Option } from '@/store/modules/options.ts';
export const getTopo = (): void => {
if (store.state.topo.current.key === 'default') {
store.dispatch('topo/GET_TOPO');
} else {
store.dispatch('topo/GET_TOPO_APPLICATION', store.state.topo.current.key);
}
};