import { useMainStore } from '@/store'; export function validateISSClientTag(clientTag) { const store = useMainStore() const clientName = store.issConfig.clientName; const resp = store.validateClientTag(clientTag); console.log(resp); return true; };