toggle_archived(h) {
        api.post("/api/habit", {id: h.id, archived: h.archived ? 0 : 1}, (res) => {
            this.refs.habits.update_item_by_key(res.habit, 'id')
        })
    }