-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: pptx support and rename to office-pack
- Loading branch information
Showing
12 changed files
with
93,466 additions
and
32 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts" setup> | ||
import Xlsx from './office/xlsx.vue'; | ||
import Docx from './office/docx.vue'; | ||
import Pptx from './office/pptx.vue'; | ||
import type { vFile } from '@/env'; | ||
import { splitPath } from '@/utils'; | ||
const _prop = defineProps(['option']), | ||
file = _prop.option as vFile, | ||
ext = splitPath(file).ext; | ||
</script> | ||
|
||
<template> | ||
<Xlsx v-if="ext === 'xlsx'" :option="file" /> | ||
<Docx v-else-if="ext === 'docx'" :option="file" /> | ||
<Pptx v-else-if="ext === 'pptx'" :option="file" /> | ||
<div v-else vs-icon="warning" inline>不支持该格式文件</div> | ||
</template> |
File renamed without changes.
Oops, something went wrong.