REMOVE_NOTE(state, id) {
      const index = state.items.findIndex(v => v.id === id);
      state.items.splice(index, 1);
    }