element-plus
Version:
> TODO: description
43 lines (33 loc) • 1.14 kB
text/typescript
import { setConfig } from '@element-plus/utils/config'
import { LocaleInjectionKey, localeProviderMaker } from '@element-plus/hooks'
import { version } from './version'
import type { App, Plugin } from 'vue'
import type { ComponentSize } from '@element-plus/utils/types'
import type { InstallOptions } from '@element-plus/utils/config'
const makeInstaller = (components: Plugin[] = []) => {
const apps: App[] = []
const install = (app: App, opts: InstallOptions) => {
const defaultInstallOpt: InstallOptions = {
size: '' as ComponentSize,
zIndex: 2000,
}
const option = Object.assign(defaultInstallOpt, opts)
if (apps.includes(app)) return
apps.push(app)
components.forEach(c => {
app.use(c)
})
if (option.locale) {
const localeProvides = localeProviderMaker(opts.locale)
app.provide(LocaleInjectionKey, localeProvides)
}
app.config.globalProperties.$ELEMENT = option
// app.provide() ? is this better? I think its not that flexible but worth implement
setConfig(option)
}
return {
version,
install,
}
}
export default makeInstaller