Skip to content
Tauri

load

load(path, options?): Promise<Store>

Defined in: plugins/store/guest-js/index.ts:51

Create a new Store or load the existing store with the path.

string

Path to save the store in app_data_dir

StoreOptions

Store configuration options

Promise<Store>

import { Store } from '@tauri-apps/api/store';
const store = await Store.load('store.json');

© 2025 Tauri Contributors. CC-BY / MIT