23 lines
323 B
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>
|