25 lines
654 B
TypeScript
25 lines
654 B
TypeScript
/*
|
|
* @Author: zhaojinfeng 121016171@qq.com
|
|
* @Date: 2023-07-18 12:22:11
|
|
* @LastEditors: zhaojinfeng 121016171@qq.com
|
|
* @LastEditTime: 2023-07-18 12:39:40
|
|
* @FilePath: \vue3\stories\PreviewOfficeView.stories.ts
|
|
* @Description:
|
|
*
|
|
*/
|
|
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
import ThPreviewOfficeView from '../packages/preview-office-view/index.vue'
|
|
|
|
const meta = {
|
|
title: '数据展示/Office预览/PreviewOfficeView',
|
|
component: ThPreviewOfficeView,
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof ThPreviewOfficeView>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {
|
|
name: '基本使用',
|
|
}
|