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