import './index.less' import { Icon, Menu, Dropdown } from 'ant-design-vue' import { i18nRender } from '@/locales' import i18nMixin from '@/store/i18n-mixin' const locales = ['zh-CN', 'en-US'] const languageLabels = { 'zh-CN': '简体中文', 'en-US': 'English' } // eslint-disable-next-line const languageIcons = { 'zh-CN': '🇨🇳', 'en-US': '🇺🇸' } const SelectLang = { props: { prefixCls: { type: String, default: 'ant-pro-drop-down' } }, name: 'SelectLang', mixins: [i18nMixin], render () { const { prefixCls } = this const changeLang = ({ key }) => { this.setLang(key) } const langMenu = (
) return (