/* * @Author: zhaojinfeng 121016171@qq.com * @Date: 2023-07-21 00:29:39 * @LastEditors: peerless_hero peerless_hero@outlook.com * @LastEditTime: 2023-08-30 13:09:06 * @FilePath: \vue3\stories\PreviewOffice.stories.ts * @Description: * */ import type { Meta, StoryObj } from '@storybook/vue3' import ThPreviewOffice from '../packages/preview-office/index.vue' const meta = { title: '数据展示/Office预览/PreviewOffice', component: ThPreviewOffice, tags: ['autodocs'], args: { file: { name: 'test.docx', url: 'https://501351981.github.io/vue-office/examples/dist/static/test-files/test.docx', extension: 'docx', }, }, parameters: { file: { name: 'test.docx', url: 'https://501351981.github.io/vue-office/examples/dist/static/test-files/test.docx', extension: 'docx', }, }, } satisfies Meta export default meta type Story = StoryObj export const Base: Story = { name: '搭配PreviewOfficeView组件使用', }