Ion Content inside Slidebox can scroll and swipe

Sorry for double posting, but I also have a related question. What is the best way to handle scrolling inside of ion-slides? Originally I was doing:

<ion-content>
    <ion-slide-box>
        <ion-slide>
            <ion-scroll>
                Content goes here
            </ion-scroll>
        </ion-slide>
    </ion-slide-box>
</ion-content>

But after seeing this thread, I tried:

<ion-slide-box>
    <ion-slide>
        <ion-content>
                Content goes here
        </ion-content>
    </ion-slide>
</ion-slide-box>

There seem to be mixed opinions on which is better. In my case there was no noticeable difference, they both work fine. But I don’t want to have any unexpected surprises later!

Thanks again!