24 lines
352 B
Vue
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>
|