Element zu Shopware.State hinzufügen in einem überschriebene Komponente

Hallo,

Ich habe die sw-product-detail Komponente überschrieben. In der Elternkomponente wird ein state-Objekt gesetzt, das swProductDetail. Diesem state-Objekt möchte ich in der Child-Komponente ein item hinzufügen. Mit Shopware.State.commit() funktioniert das nicht:

...
methods: {
      getMyList() {
          const criteria = new Criteria();
          this.myListRepository
              .search(criteria, Shopware.Context.api)
              .then((result) => {
                  if(result.total > 0) {
                      Shopware.State.commit('swProductDetail/myList', result);
                  }
              })
              .then(() => {
                  console.log(Shopware.State.get('swProductDetail'));
              });
      }
  }
...

Wie wird das umgesetzt?