How to make vue element ui partially internationalized is to change the language of a page into English.

Local internationalization of vue element ui is to change the language of a page into English;
I know that the language is changed globally

`
/ / complete introduction of Element
import Vue from "vue"
import ElementUI from" element-ui"
import locale from "element-ui/lib/locale/lang/en"

Vue.use (ElementUI, {locale})
`
so how to change the language on a local page, most of the page components are in Chinese, and then only use English on one page.


is really a strange requirement


then you have to take out the element-ui component to load globally and see how element-ui triggers this locale


has the blogger solved this problem? I also want to achieve this requirement

Menu