diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-06-29 16:52:17 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-06-29 16:52:17 -0400 |
commit | 8ac8ad09c71b10597a354eabf81cbafa14f00940 (patch) | |
tree | d6aa383df6493ab9051ea15291d154e300db85b9 /iridescence/src/components/InventorySearch.vue | |
parent | 14ac25266a53ed986402f808cab0ef04237c1022 (diff) | |
download | theglassyladies-8ac8ad09c71b10597a354eabf81cbafa14f00940.tar.xz theglassyladies-8ac8ad09c71b10597a354eabf81cbafa14f00940.zip |
playing with filtering by category
Diffstat (limited to 'iridescence/src/components/InventorySearch.vue')
-rw-r--r-- | iridescence/src/components/InventorySearch.vue | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/iridescence/src/components/InventorySearch.vue b/iridescence/src/components/InventorySearch.vue index e9da6f6..6145246 100644 --- a/iridescence/src/components/InventorySearch.vue +++ b/iridescence/src/components/InventorySearch.vue @@ -14,11 +14,12 @@ <div class="control"> <div class="select is-primary is-medium"> <select> - <option>(Sort by...)</option> - <option>Age (Oldest to Newest)</option> - <option>Name</option> - <option>Price (Low to High)</option> - <option>Price (High to Low)</option> + <option>Featured</option> + <option>Name/A-Z</option> + <option>Newest to Oldest</option> + <option>Oldest to Newest</option> + <option>Low to High</option> + <option>High to Low</option> </select> </div> </div> |