13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
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;
|
|
};
|