16 lines
223 B
Vue
16 lines
223 B
Vue
|
<template>
|
||
|
<dict-tag
|
||
|
:type="DICT_TYPE.UNIT_DICT"
|
||
|
:value="injectData.unitDictValue" />
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
injectData: {
|
||
|
type: Object,
|
||
|
default: () => ({}),
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|