8 lines
192 B
Vue
8 lines
192 B
Vue
|
|
<template>
|
||
|
|
<!-- 我的出库单 -->
|
||
|
|
<search-list type="stockOut" :onDetail="onDetail" />
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import SearchList from '../../components/SearchList.vue';
|
||
|
|
|
||
|
|
</script>
|