UNPKG

@owdproject/core

Version:

<p align="center"> <img width="160" height="160" src="https://avatars.githubusercontent.com/u/65117737?s=160&v=4" /> </p> <h1 align="center">Open Web Desktop</h1> <h3 align="center"> A modular framework for building web-based desktop experiences. </h3

16 lines (14 loc) 288 B
import { defineStore } from 'pinia' export const useApplicationMetaStore = (appId: string, states: any = {}) => { return defineStore( `owd/application/${appId}/meta`, () => { return states }, { persistedState: { persist: true, }, }, ) }