Settings

Brand

Update the brand name used globally in the app from store/index.js

export const state = () => ({ brand: 'Luma' })

You can use $store.state.brand in any component.

<h1>{{ $store.state.brand }}</h1>

Settings UI

Enable or disable the ability to update the application settings via the user interface from store/settings.js

export const state = () => ({ ui: true })