You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
470 B

1 year ago
<template>
11 months ago
<job-com-main-card :dataContent="dataContent">
<jobComMainDetailCard :dataContent="dataContent"></jobComMainDetailCard>
</job-com-main-card>
</template>
1 year ago
11 months ago
<script setup lang="ts">
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue'
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue'
1 year ago
11 months ago
const props = defineProps({
dataContent: {
type: Object,
default: {}
}
})
</script>
1 year ago
11 months ago
<style lang="scss"></style>