FormatFive.vue 428 B

1234567891011121314151617181920212223242526
  1. <script setup>
  2. import {getPPTContentType,getPPTContentItemData} from '../hooks/createPPTContent'
  3. const props=defineProps({
  4. pageData:{
  5. type:Object,
  6. default:{}
  7. }
  8. })
  9. </script>
  10. <template>
  11. <div class="ppt-item-box">
  12. <div class="ppt-title-box">{{pageData.title}}</div>
  13. <div class="ppt-content-box">
  14. </div>
  15. </div>
  16. </template>
  17. <style scoped lang="scss">
  18. @import '../style/common.scss';
  19. </style>