Conformance: Have activity Layout done.
This commit is contained in:
17
src/stores/conformance.js
Normal file
17
src/stores/conformance.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineStore } from "pinia";
|
||||
import loadingStore from "./loading";
|
||||
import pinia from '@/stores/main.js';
|
||||
|
||||
const loading = loadingStore(pinia);
|
||||
|
||||
export default defineStore('conformanceStore', {
|
||||
state: () => ({
|
||||
selectedRuleType: 'Have activity',
|
||||
selectedActivitySequence: 'Start & End',
|
||||
selectedMode: 'Directly follows',
|
||||
selectedProcessScope: 'End to end',
|
||||
selectedActSeqMore: 'All',
|
||||
}),
|
||||
getters: {},
|
||||
actions: {},
|
||||
})
|
||||
Reference in New Issue
Block a user