Fix:Search page tags category items

This commit is contained in:
advplyr 2022-08-23 16:07:53 -05:00
parent d0ab13865c
commit 67f6cd3c56
6 changed files with 27 additions and 59 deletions

View file

@ -30,7 +30,12 @@ export default {
bookshelfView: {
type: Number,
default: 0
}
},
collectionMount: {
type: Object,
default: () => null
},
isTag: Boolean
},
data() {
return {
@ -99,6 +104,10 @@ export default {
}
}
},
mounted() {}
mounted() {
if (this.collectionMount) {
this.setEntity(this.collectionMount)
}
}
}
</script>