updatePlate: (state, new_attributes) => {
    const found_plate = state.plates[new_attributes.id] || {};
    // Merge the new attributes into the old, and update the plate
    let combined_plate = Object.assign({}, found_plate, new_attributes);
    Vue.set(state.plates, new_attributes.id, combined_plate);