14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
|
export default () => ({
|
||
|
apiEndpointUrl: null,
|
||
|
badgeInAddForm: null,
|
||
|
badgeInEditForm: null,
|
||
|
badgeInModal: null,
|
||
|
badges: [],
|
||
|
docsUrl: null,
|
||
|
renderedBadge: null,
|
||
|
isEditing: false,
|
||
|
isLoading: false,
|
||
|
isRendering: false,
|
||
|
isSaving: false,
|
||
|
});
|