1234567891011121314151617181920212223242526 |
- <script setup>
- import {getPPTContentType,getPPTContentItemData} from '../hooks/createPPTContent'
- const props=defineProps({
- pageData:{
- type:Object,
- default:{}
- }
- })
- </script>
- <template>
- <div class="ppt-item-box">
- <div class="ppt-title-box">{{pageData.title}}</div>
- <div class="ppt-content-box">
-
- </div>
- </div>
- </template>
- <style scoped lang="scss">
- @import '../style/common.scss';
- </style>
|