feat(client): ミューテーション監視をやめてページリロードするように
This commit is contained in:
parent
191c064611
commit
8ff2694cad
3 changed files with 5 additions and 14 deletions
|
@ -201,7 +201,7 @@ export default Vue.extend({
|
|||
|
||||
enableInfiniteScroll: {
|
||||
get() { return this.$store.state.device.enableInfiniteScroll; },
|
||||
set(value) { this.$store.commit('device/setInfiniteScrollEnabling', value); }
|
||||
set(value) { this.$store.commit('device/set', { key: 'enableInfiniteScroll', value }); }
|
||||
},
|
||||
|
||||
fixedWidgetsPosition: {
|
||||
|
@ -294,6 +294,10 @@ export default Vue.extend({
|
|||
fixedWidgetsPosition() {
|
||||
location.reload()
|
||||
},
|
||||
|
||||
enableInfiniteScroll() {
|
||||
location.reload()
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue