Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/angular/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ Swiper options should be provided as individual properties directly on the `<swi
Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` options set:

```html
<ion-slides [options]="{ slidesPerView: true, loop: true }">
<ion-slides [options]="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion docs/vue/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` opti

```html
<template>
<ion-slides :options="{ slidesPerView: true, loop: true }">
<ion-slides :options="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 2</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v6/angular/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Swiper options should be provided as individual properties directly on the `<swi
Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` options set:

```html
<ion-slides [options]="{ slidesPerView: true, loop: true }">
<ion-slides [options]="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v6/vue/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` opti

```html
<template>
<ion-slides :options="{ slidesPerView: true, loop: true }">
<ion-slides :options="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down