add: (WIP) category view
Removed h1 from calculator, add preparation for category view
This commit is contained in:
parent
50ef15c1a6
commit
0a73fcbcf5
2 changed files with 44 additions and 16 deletions
|
@ -13,20 +13,32 @@
|
|||
@update="updateCard()"
|
||||
/>
|
||||
<section class="content flex-col">
|
||||
<div class="content-text">
|
||||
<h1>Mit ProPapier Preise vergleichen und sparen</h1>
|
||||
</div>
|
||||
<aside class="filter-bar">
|
||||
<PpFormDropDown
|
||||
:elements="sortElements"
|
||||
:current="currentSortElement!"
|
||||
@click="setSortElement"
|
||||
/>
|
||||
<PpFormToggleButton
|
||||
:icons="['pp:sort-desc', 'pp:sort-asc']"
|
||||
:current="currentSortDirection"
|
||||
@click="countSortDirection"
|
||||
/>
|
||||
<div class="box">
|
||||
<strong>Kategorie:</strong>
|
||||
<div>
|
||||
<PpFormDropDown
|
||||
:elements="sortElements"
|
||||
:current="currentSortElement!"
|
||||
@click="setSortElement"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box">
|
||||
<strong>Preise Sortieren nach:</strong>
|
||||
<div>
|
||||
<PpFormDropDown
|
||||
:elements="sortElements"
|
||||
:current="currentSortElement!"
|
||||
@click="setSortElement"
|
||||
/>
|
||||
<PpFormToggleButton
|
||||
:icons="['pp:sort-desc', 'pp:sort-asc']"
|
||||
:current="currentSortDirection"
|
||||
@click="countSortDirection"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
<div class="flex-col" role="list" v-if="cards.length">
|
||||
<PpPriceCard
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue