bonus-ui/src/views/material/cost/lostReportList.vue

23 lines
323 B
Vue

<template>
<div class="app-container">
<LostReportHome />
</div>
</template>
<script>
import LostReportHome from './component/lostReportHome.vue'
export default {
name: 'LostReportList',
components: {
LostReportHome
}
}
</script>
<style lang="scss" scoped>
.app-container {
padding: 20px;
}
</style>