yudao-dev/src/views/base/packagingPrintModel/unitDict.vue

16 lines
223 B
Vue
Raw Normal View History

2023-10-23 08:42:46 +08:00
<template>
<dict-tag
:type="DICT_TYPE.UNIT_DICT"
:value="injectData.unitDictValue" />
</template>
<script>
export default {
props: {
injectData: {
type: Object,
default: () => ({}),
},
},
};
</script>