From a3577941167428a23e62fa6825b9c182de65579d Mon Sep 17 00:00:00 2001 From: moiseyser Date: Mon, 5 Sep 2022 19:20:55 +0300 Subject: [PATCH] Update 5-adding-mobile.md --- docs/vue/your-first-app/5-adding-mobile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/vue/your-first-app/5-adding-mobile.md b/docs/vue/your-first-app/5-adding-mobile.md index 28c60aa6bf3..728e1ffb83c 100644 --- a/docs/vue/your-first-app/5-adding-mobile.md +++ b/docs/vue/your-first-app/5-adding-mobile.md @@ -57,7 +57,7 @@ Next, add a new bit of logic in the `loadSaved` function. On mobile, we can dire ```tsx const loadSaved = async () => { - const photoList = await Storage.get({ key: PHOTO_STORAGE }); + const photoList = await Preferences.get({ key: PHOTO_STORAGE }); const photosInPreferences = photoList.value ? JSON.parse(photoList.value) : []; // If running on the web...