feat: Add store and API to support articles in widget (#7616)

This commit is contained in:
Nithin David Thomas
2023-07-27 02:38:27 +05:30
committed by GitHub
parent 12c338364e
commit 89e09857af
5 changed files with 200 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import events from 'widget/store/modules/events';
import globalConfig from 'shared/store/globalConfig';
import message from 'widget/store/modules/message';
import campaign from 'widget/store/modules/campaign';
import article from 'widget/store/modules/articles';
Vue.use(Vuex);
export default new Vuex.Store({
@@ -24,5 +25,6 @@ export default new Vuex.Store({
globalConfig,
message,
campaign,
article,
},
});