add product button to table
This commit is contained in:
parent
952677ae13
commit
2a078651b9
1 changed files with 13 additions and 1 deletions
|
|
@ -148,7 +148,19 @@
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<div class="row items-center no-wrap q-mb-md">
|
<div class="row items-center no-wrap q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h5 class="text-subtitle1 q-my-none">Products</h5>
|
<h5 class="text-subtitle1 q-my-none">
|
||||||
|
Products
|
||||||
|
<span v-if="stalls.length > 0" class="q-px-sm">
|
||||||
|
<q-btn
|
||||||
|
round
|
||||||
|
color="primary"
|
||||||
|
icon="add"
|
||||||
|
size="sm"
|
||||||
|
@click="productDialog.show = true"
|
||||||
|
/>
|
||||||
|
<q-tooltip> Add a product </q-tooltip>
|
||||||
|
</span>
|
||||||
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<q-btn flat color="grey" @click="exportProductsCSV"
|
<q-btn flat color="grey" @click="exportProductsCSV"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue