sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

11
plugins/axios.js Normal file
View File

@ -0,0 +1,11 @@
import $cookie from 'vue-cookie';
export default ({ $axios, res }) => {
$axios.onRequest(config => {
config.headers.common['AUTHENTICATION_FEMS_SESSION'] = `${$cookie.get(
'FEMS_SESSION',
)}`;
// config.headers['set1-cookie'] = `${$cookie.get('FEMS_SESSION',)}`;
});
};