123456789101112131415161718192021222324252627 |
- <template>
- <div>
- <reportFileTable></reportFileTable>
- </div>
- </template>
- <script>
- import reportFileTable from '../reportFile/reportFileTable.vue'
- export default {
- components: {
- reportFileTable
- },
- data() {
- return {
- }
- },
- mounted() {
-
- },
- methods: {
- },
- }
- </script>
- <style lang="scss" scoped></style>
|