ropbla9 / vue-reactive-storage

Reactive layer for interacting with localStorage from Vue. Plugin for Vue 2.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

It is impossible to store falsy values

NotWearingPants opened this issue · comments

It is impossible to store values such as false or 0 using this plugin.

Change the || here to ??, or use .hasOwnProperty instead.

const value = local[key] || schema[key]