You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
244 B
15 lines
244 B
|
6 years ago
|
import {createMutations} from "@/store/util"
|
||
|
6 years ago
|
|
||
|
|
const state = {
|
||
|
6 years ago
|
//登录页背景动画
|
||
|
6 years ago
|
loginBackgroundAnimation: 'sparkRain',
|
||
|
6 years ago
|
}
|
||
|
|
|
||
|
6 years ago
|
const mutations = createMutations(state)
|
||
|
6 years ago
|
|
||
|
|
export default {
|
||
|
|
namespaced: true,
|
||
|
|
state,
|
||
|
|
mutations
|
||
|
|
}
|