import { useMainStore } from '@/store'; export function validateISSClientTag(clientTag) { const store = useMainStore() return store.validateClientTag(clientTag) .then((response) => // Success response , (error) => // Error null); }