Goto (IMAB) Apps page -» Edit Your Project -» Checked: Enable storage
Saving Data
let myVar = `Testing`;
this.storage.set(`currentData`,myVar).then(e=>{
console.log(`save`,myVar);
});
Get Data
this.storage.get(`currentData`).then(data=>{
console.log(`get:`,data);
});