You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
552 B
29 lines
552 B
import Dict from './Dict'
|
|
|
|
const install = function(Vue) {
|
|
Vue.mixin({
|
|
data() {
|
|
if (this.$options.dicts instanceof Array) {
|
|
const dict = {
|
|
dict: {},
|
|
label: {}
|
|
}
|
|
return {
|
|
dict
|
|
}
|
|
}
|
|
return {}
|
|
},
|
|
created() {
|
|
if (this.$options.dicts instanceof Array) {
|
|
new Dict(this.dict).init(this.$options.dicts, () => {
|
|
this.$nextTick(() => {
|
|
this.$emit('dictReady')
|
|
})
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
export default { install }
|
|
|