diff --git a/frontend/pages/notes/index.vue b/frontend/pages/notes/index.vue index 055ae13..553bdef 100644 --- a/frontend/pages/notes/index.vue +++ b/frontend/pages/notes/index.vue @@ -35,7 +35,7 @@ export default { ...mapState('notes', ['notes', 'isInitialized']), }, mounted() { - this.load() + if (!this.isInitialized) this.load() }, methods: { ...mapActions('notes', ['load']),