Pass options to the defineStore function of pinia
class User extends Model { static entity = 'users' static fields () { return { userId: this.attr(null) } } static piniaOptions = { persist: true }}
const piniaOptions: Record<string, any> = {}