wms-njlm/src/views/packing/packagingPrintModel/unitDict.vue
2023-11-04 14:50:01 +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>