## Functions

<dl>
<dt><a href="#vrkflowGetters">vrkflowGetters(getters)</a></dt>
<dd><p>Creates new getters object for a Vuex module.</p>
</dd>
<dt><a href="#workflow">workflow()</a> ⇒ <code>Array</code></dt>
<dd><p>Returns all the steps of the current workflow</p>
</dd>
<dt><a href="#isReady">isReady()</a> ⇒ <code>Boolean</code></dt>
<dd><p>Returns &quot;true&quot; if the workflow has steps and &quot;false&quot; if it doesn&#39;t</p>
</dd>
<dt><a href="#isActive">isActive()</a> ⇒ <code>Boolean</code></dt>
<dd><p>Returns &quot;true&quot; if the workflow has already initialized</p>
</dd>
<dt><a href="#currentStep">currentStep()</a> ⇒ <code>Objext</code></dt>
<dd><p>Returns the current step</p>
</dd>
<dt><a href="#nextStep">nextStep()</a> ⇒ <code>Objext</code></dt>
<dd><p>Returns the next step</p>
</dd>
<dt><a href="#previousStep">previousStep()</a> ⇒ <code>Objext</code></dt>
<dd><p>Returns the previous step</p>
</dd>
</dl>

<a name="vrkflowGetters"></a>

## vrkflowGetters(getters)
Creates new getters object for a Vuex module.

**Kind**: global function  

| Param | Type | Description |
| --- | --- | --- |
| getters | <code>Object</code> | The default getters (will override generated getters object). |

<a name="workflow"></a>

## workflow() ⇒ <code>Array</code>
Returns all the steps of the current workflow

**Kind**: global function  
**Returns**: <code>Array</code> - An array of step objects  
<a name="isReady"></a>

## isReady() ⇒ <code>Boolean</code>
Returns "true" if the workflow has steps and "false" if it doesn't

**Kind**: global function  
**Returns**: <code>Boolean</code> - "true" if the workflow has steps and "false" if it doesn't  
<a name="isActive"></a>

## isActive() ⇒ <code>Boolean</code>
Returns "true" if the workflow has already initialized

**Kind**: global function  
**Returns**: <code>Boolean</code> - "true" if the workflow has already initialized  
<a name="currentStep"></a>

## currentStep() ⇒ <code>Objext</code>
Returns the current step

**Kind**: global function  
**Returns**: <code>Objext</code> - Current step  
<a name="nextStep"></a>

## nextStep() ⇒ <code>Objext</code>
Returns the next step

**Kind**: global function  
**Returns**: <code>Objext</code> - Next step  
<a name="previousStep"></a>

## previousStep() ⇒ <code>Objext</code>
Returns the previous step

**Kind**: global function  
**Returns**: <code>Objext</code> - Previous step  
