PPTist icon indicating copy to clipboard operation
PPTist copied to clipboard

优化目录结构组件化封装等

Open ijry opened this issue 1 year ago • 1 comments

…(reading 'config')

ijry avatar Jan 13 '24 02:01 ijry

优化目录结构使组件化隔离化,集成进已有项目更便捷;v-model格式为{title: '', theme: {}, slides: []}。

<template>
  <pptist v-model="pptJson" "options="options"></pptist>
</template>
<script setup>
import pptist from '@/components/pptist/Index.vue'
const options = ref({
  showEditorHeader: true, // 是否显示编辑器header
  exportFileTypes: ['pptist', 'json', 'pptx', 'image', 'pdf'], // 导出文件类型支持'pptist', 'pptx', 'image', 'json', 'pdf'
  fileMenuItems: ['importPPTIST', 'importPPTX', 'export', 'resetSliders', 'hotkey', 'issues', 'qa'], // 文件菜单项目支持'importPPTIST', 'importPPTX', 'export', 'resetSliders', 'hotkey', 'issues', 'qa'
})
</script>

ijry avatar Jan 13 '24 02:01 ijry