index.vue 276 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <fileList :type="type" id=""></fileList>
  4. </div>
  5. </template>
  6. <script>
  7. import fileList from "../components/fileList";
  8. export default {
  9. name: "Information",
  10. components: { fileList },
  11. data() {
  12. return {
  13. type: "1",
  14. };
  15. },
  16. };
  17. </script>