forked from FoundKeyGang/FoundKey
Fix #4990
This commit is contained in:
parent
37e4226c70
commit
4de709fe51
1 changed files with 4 additions and 9 deletions
|
@ -17,20 +17,15 @@ import Progress from '../../../common/scripts/loading';
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
i18n: i18n('desktop/views/pages/tag.vue'),
|
i18n: i18n('desktop/views/pages/tag.vue'),
|
||||||
data() {
|
computed: {
|
||||||
return {
|
pagination() {
|
||||||
pagination: {
|
return {
|
||||||
endpoint: 'notes/search-by-tag',
|
endpoint: 'notes/search-by-tag',
|
||||||
limit: 20,
|
limit: 20,
|
||||||
params: {
|
params: {
|
||||||
tag: this.$route.params.tag
|
tag: this.$route.params.tag
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
};
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
$route() {
|
|
||||||
this.$refs.timeline.reload();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
Loading…
Reference in a new issue