13 lines
194 B
Vue
13 lines
194 B
Vue
|
|
<template>
|
||
|
|
<StockIoPage ioType="move" />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import StockIoPage from './panels/stockIoPage.vue';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
StockIoPage
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|