[hub][vue] Saved Products Page, remote item card

- also undo unfavouriting items
This commit is contained in:
Prateeksha Singh
2018-08-25 13:18:30 +05:30
parent fe41713974
commit 00175eab8e
8 changed files with 170 additions and 159 deletions

View File

@@ -12,6 +12,7 @@
:key="item[item_id_fieldname]"
:item="item"
:item_id_fieldname="item_id_fieldname"
:is_local="is_local"
:on_click="on_click"
:allow_clear="editable"
@remove-item="$emit('remove-item', item[item_id_fieldname])"
@@ -29,6 +30,7 @@ export default {
props: {
items: Array,
item_id_fieldname: String,
is_local: Boolean,
on_click: Function,
editable: Boolean,