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.
1 parent be284fd commit 33b761fCopy full SHA for 33b761f
src/interface.vue
@@ -6,10 +6,12 @@
6
class="action"
7
:class="[trigger.type]"
8
:loading="loadings[index].value"
9
+ :secondary="trigger.type !== 'primary'"
10
v-bind="{ [trigger.size]: true }"
11
@click="onClick(trigger.method, parsedUrls[index], index)"
12
>
- {{ trigger.label }}
13
+ <v-icon v-if="trigger.icon" left :name="trigger.icon" />
14
+ <span v-if="trigger.label">{{ trigger.label }}</span>
15
</v-button>
16
</div>
17
</template>
0 commit comments