123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="height_100">
- <technicalDisclosure :projectId="projectId"></technicalDisclosure>
- </div>
- </template>
- <script>
- import technicalDisclosure from './technicalDisclosure.vue';
- export default {
- components: {
- technicalDisclosure
- },
- props: {},
- data() {
- return {
- };
- },
- watch: {},
- computed: {
- projectId(){
- return this.$route.query.projectId
- },
- },
- created() {},
- mounted() {},
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- </style>
|