pms-aomei/src/views/modules/pms/opcAndBatchConfig/components/batchView.vue
2023-04-27 14:38:21 +08:00

24 lines
352 B
Vue

<template>
<InputsArea class="batch-view" title="Batch">
batch view
</InputsArea>
</template>
<script>
import InputsArea from "./InputsArea.vue";
export default {
name: "BatchView",
components: { InputsArea },
props: {},
data() {
return {};
},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped></style>