|
1
|
import './addons-tabs'; |
|
2
|
import SettingsPage from './SettingsPage'; |
|
3
|
|
|
4
|
const { renderCurrentPage } = window.JetFBActions; |
|
5
|
const { NoticesPlugin } = JetFBStore; |
|
6
|
|
|
7
|
const store = new Vuex.Store( { |
|
8
|
plugins: [ NoticesPlugin ] |
|
9
|
} ) |
|
10
|
|
|
11
|
renderCurrentPage( SettingsPage, { store } );
|