Sha256: c27dda008ebd41444c652585e9a14ec8a98cb4f7ce828629d90df230457ae945
Contents?: true
Size: 416 Bytes
Versions: 16
Compression:
Stored size: 416 Bytes
Contents
const ckEditor = { namespaced: true, state: { ckId: "", ckFun: "", }, mutations: { SET_CK_ID(state, value) { state.ckId = value }, SET_CK_FUN(state, value) { state.ckFun = value } }, actions: { setCkFun({commit}, value) { commit('SET_CK_FUN', value) }, setCkId({commit}, value) { commit('SET_CK_ID', value) } } } export default ckEditor
Version data entries
16 entries across 16 versions & 1 rubygems