reportFileDrawer.vue 340 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div>
  3. <reportFileTable></reportFileTable>
  4. </div>
  5. </template>
  6. <script>
  7. import reportFileTable from '../reportFile/reportFileTable.vue'
  8. export default {
  9. components: {
  10. reportFileTable
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. mounted() {
  17. },
  18. methods: {
  19. },
  20. }
  21. </script>
  22. <style lang="scss" scoped></style>