1234567891011121314151617181920212223242526 |
- import {
- getConfig
- } from '@/utils/auth';
- const getDefaultSate = () => {
- const config = getConfig();
- return {
- app_id: '',
- config: {
- logo_image_url_mobile: config?.logo_image_url_mobile ?? ''
- }
- };
- };
- const state = getDefaultSate();
- const mutations = {};
- const actions = {};
- export default {
- namespaced: true,
- state,
- mutations,
- actions
- };
|