UNPKG

yinghe-lowcode

Version:

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

17 lines (14 loc) 272 B
import { mapState } from 'vuex' const i18nMixin = { computed: { ...mapState({ currentLang: state => state.app.lang }) }, methods: { setLang (lang) { this.$store.dispatch('setLang', lang) } } } export default i18nMixin