index.vue 506 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="height_100">
  3. <technicalDisclosure :projectId="projectId"></technicalDisclosure>
  4. </div>
  5. </template>
  6. <script>
  7. import technicalDisclosure from './technicalDisclosure.vue';
  8. export default {
  9. components: {
  10. technicalDisclosure
  11. },
  12. props: {},
  13. data() {
  14. return {
  15. };
  16. },
  17. watch: {},
  18. computed: {
  19. projectId(){
  20. return this.$route.query.projectId
  21. },
  22. },
  23. created() {},
  24. mounted() {},
  25. methods: {},
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. </style>