Configuration and Setup
How to configure and use the Aurelia Store plugin.
Last updated
Was this helpful?
Was this helpful?
import Aurelia from 'aurelia';
import { StoreConfiguration } from '@aurelia/store-v1';
import { initialState } from './initialstate';
Aurelia
.register(
StoreConfiguration.withInitialState(initialState)
)
.app(MyApp)
.start();