I've installed the latest version of this plugin into my Cordova / Nuxt JS project. I'm trying to store some data when I click a button, and alert the data back when a different button is clicked:
<template>
<div class="fill-height has-safe-area-top">
<v-container>
<v-layout row pb-2>
<v-flex>
<h1>Native storage test</h1>
<v-btn @click="storeData">Store</v-btn>
<v-btn @click="getData">Get</v-btn>
</v-flex>
</v-layout>
</v-container>
</div>
</template>
<script>
export default {
methods: {
storeData() {
NativeStorage.initWithSuiteName("suitename");
NativeStorage.setItem("reference_to_value", "my value");
},
getData() {
alert(NativeStorage.getItem("reference_to_value"))
}
}
}
</script>
This seems to return undefined on the alert() when testing on a physical device compiled in Xcode 10.
I've installed the latest version of this plugin into my Cordova / Nuxt JS project. I'm trying to store some data when I click a button, and alert the data back when a different button is clicked:
This seems to return
undefinedon thealert()when testing on a physical device compiled in Xcode 10.