UNPKG

yinghe-lowcode-zln

Version:

基于vue、ant-design-vue,datagrid的低代码平台

18 lines (17 loc) 286 B
import Vue from "vue"; const gen = { state: { publicKey: "", }, mutations: { SET_PUBLIC_KEY: (state, key) => { state.publicKey = key; }, }, actions: { setPublicKey({ commit }, key) { commit("SET_PUBLIC_KEY", key); }, }, }; export default gen