Update relative path imports to use '@' alias

- Add '@/' instead of '../../../'

Signed-off-by: Suren Neware <sneware9@in.ibm.com>
Change-Id: Ida1dc26f2bd62f38914a74b729ee8fd143c360ac
diff --git a/src/store/modules/Authentication/AuthenticanStore.js b/src/store/modules/Authentication/AuthenticanStore.js
index 4afb11d..0dd616a 100644
--- a/src/store/modules/Authentication/AuthenticanStore.js
+++ b/src/store/modules/Authentication/AuthenticanStore.js
@@ -1,6 +1,6 @@
-import api from '../../api';
+import api from '@/store/api';
 import Cookies from 'js-cookie';
-import router from '../../../router';
+import router from '@/router';
 
 const AuthenticationStore = {
   namespaced: true,