• Returns a store, creates it if necessary.

    Parameters

    • Optional pinia: null | Pinia

      Pinia instance to retrieve the store

    • Optional hot: StoreGeneric

      dev only hot module replacement

    Returns Store<"appbar", _UnwrapAll<Pick<{
        addTempButton: ((value) => void);
        items: Ref<AppbarItemSet>;
        order: Ref<string[][]>;
        removeButton: ((value) => void);
        temporary: Ref<string[]>;
        visible: ComputedRef<(string | AppbarItemInstance)[][]>;
    }, "items" | "order" | "temporary">>, Pick<{
        addTempButton: ((value) => void);
        items: Ref<AppbarItemSet>;
        order: Ref<string[][]>;
        removeButton: ((value) => void);
        temporary: Ref<string[]>;
        visible: ComputedRef<(string | AppbarItemInstance)[][]>;
    }, "visible">, Pick<{
        addTempButton: ((value) => void);
        items: Ref<AppbarItemSet>;
        order: Ref<string[][]>;
        removeButton: ((value) => void);
        temporary: Ref<string[]>;
        visible: ComputedRef<(string | AppbarItemInstance)[][]>;
    }, "addTempButton" | "removeButton">>

Generated using TypeDoc