Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
webui-vue
/
a2988f40b965fdcf2941ff6e62c5bac5cf0e6988
/
.
/
src
/
store
/
index.js
blob: fb6015f46f54d17cb9b981303ad25a8e5bd5bcfe [
file
] [
log
] [
blame
]
Derick Montague
a2988f4
2020-01-17 13:46:30 -0600
[
diff
] [
blame^
]
1
import
Vue
from
"vue"
;
2
import
Vuex
from
"vuex"
;
3
4
Vue
.
use
(
Vuex
);
5
6
export
default
new
Vuex
.
Store
({
7
state
:
{},
8
mutations
:
{},
9
actions
:
{},
10
modules
:
{}
11
});