16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
import ThPreviewOffice from '../packages/preview-office/index.vue'
|
|
|
|
const meta = {
|
|
title: '数据展示/Office预览/PreviewOffice',
|
|
component: ThPreviewOffice,
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof ThPreviewOffice>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {
|
|
name: '基本使用',
|
|
}
|