yudao-dev/src/views/base/packagingPrintModel/unitDict.vue
‘937886381’ 2c3bdde403 包装管理
2023-10-23 08:42:46 +08:00

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>