22 lines
496 B
JavaScript
22 lines
496 B
JavaScript
|
import {GlobalStore} from './lib/gstore-es6'
|
||
|
|
||
|
window.gstore = new GlobalStore();
|
||
|
window.gstore.add('header_title', 'ndli1718');
|
||
|
window.gstore.add('notif', {
|
||
|
active: false,
|
||
|
type: 'warning',
|
||
|
message: 'Warning! blabla'
|
||
|
});
|
||
|
window.gstore.add('menu_item_active', 'dashboard');
|
||
|
window.gstore.add('menu_item', {
|
||
|
dashboard: {
|
||
|
label: 'Dashboard',
|
||
|
icon: 'dashboard'
|
||
|
}, profile: {
|
||
|
label: 'Profil',
|
||
|
icon: 'profile'
|
||
|
}, inbox: {
|
||
|
label: 'Boîte de réception',
|
||
|
icon: 'messages'
|
||
|
}
|
||
|
});
|