postCountModel.vue 693 Bytes
<!--
 * @Date: 2025-12-11 17:26:25
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-12-11 17:29:23
 * @FilePath: /mlaj/src/components/count/postCountModel.vue
 * @Description: 发布作业统计模型
-->
<template>
  <div class="post-count-model">
    <!-- TODO 感恩模块还没有做 -->
    <div>感恩模块还没有做</div>
  </div>
</template>

<script setup>
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'

const props = defineProps({
  postData: {
    type: Object,
    default: () => ({})
  }
})


</script>

<style lang="less" scoped>
.post-count-model {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
</style>