Vuex - Long Term Memory
    Preparing search index...

    Interface StringStorage

    Required subset of localStorage API by localStorageWrapper.

    interface StringStorage {
        getItem(key: string): null | string;
        setItem(key: string, data: string): void;
    }
    Index

    Methods