We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff56f07 + af8602e commit 2aaa63dCopy full SHA for 2aaa63d
src/components/dashboard_items/DashboardVuexStore.vue
@@ -20,13 +20,15 @@ Description:
20
</q-tabs>
21
<q-tab-panels v-model="tab" animated class="html-bg text-white">
22
<q-tab-panel name="state">
23
+ <p v-if='!this.stateOptions.length'>No state in store</p>
24
<ul id="stateList">
25
<li v-for="state in stateOptions" v-bind:key="state">
26
{{ state }}
27
</li>
28
</ul>
29
</q-tab-panel>
30
<q-tab-panel name="actions">
31
+ <p v-if='!this.actionOptions.length'>No actions in store</p>
32
<ul id="actionList">
33
<li v-for="action in actionOptions" :key="action">
34
{{ action }}
0 commit comments