You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Ionic styles are not shown in this example to keep it brief but will be included in the Ionic package downloaded for your app. Do not remove them. */
@@ -207,7 +207,7 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
207
207
<script setup lang="ts">
208
208
// CHANGE: Add import from `ionicons/icons`
209
209
import { camera, trash, close } from 'ionicons/icons';
210
-
// CHANGE: Update import from `@ionic/vue` to include necessary Ionic components.
210
+
// CHANGE: Update import from `@ionic/vue` to include necessary Ionic components
211
211
import {
212
212
IonPage,
213
213
IonHeader,
@@ -222,7 +222,7 @@ import {
222
222
IonCol,
223
223
IonImg,
224
224
} from '@ionic/vue';
225
-
// CHANGE: Remove or comment out the ExploreContainer import.
225
+
// CHANGE: Remove or comment out the ExploreContainer import
226
226
// import ExploreContainer from '@/components/ExploreContainer.vue';
227
227
</script>
228
228
```
@@ -258,7 +258,7 @@ Next, open `src/views/TabsPage.vue`. Change the label to "Photos" and the `ellip
Next, add a new bit of logic in the `loadSaved()` method. On mobile, we can directly point to each photo file on the Filesystem and display them automatically. On the web, however, we must read each image from the Filesystem into base64 format. This is because the Filesystem API uses [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) under the hood. Update the `loadSaved()` method:
/* Ionic styles are not shown in this example to keep it brief but will be included in the Ionic package downloaded for your app. Do not remove them. */
@@ -207,7 +207,7 @@ We put the visual aspects of our app into `<ion-content>`. In this case, it’s
207
207
<script setup lang="ts">
208
208
// CHANGE: Add import from `ionicons/icons`
209
209
import { camera, trash, close } from 'ionicons/icons';
210
-
// CHANGE: Update import from `@ionic/vue` to include necessary Ionic components.
210
+
// CHANGE: Update import from `@ionic/vue` to include necessary Ionic components
211
211
import {
212
212
IonPage,
213
213
IonHeader,
@@ -222,7 +222,7 @@ import {
222
222
IonCol,
223
223
IonImg,
224
224
} from '@ionic/vue';
225
-
// CHANGE: Remove or comment out the ExploreContainer import.
225
+
// CHANGE: Remove or comment out the ExploreContainer import
226
226
// import ExploreContainer from '@/components/ExploreContainer.vue';
227
227
</script>
228
228
```
@@ -258,7 +258,7 @@ Next, open `src/views/TabsPage.vue`. Change the label to "Photos" and the `ellip
0 commit comments