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

This commit is contained in:
Nithin David Thomas
2023-07-26 14:08:27 -07:00
committed by GitHub
parent 12c338364e
commit 89e09857af
5 changed files with 200 additions and 0 deletions
+2
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,
},
});