mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
19 lines
366 B
Vue
19 lines
366 B
Vue
<script setup lang="ts">
|
|
import "@vue-office/docx/lib/index.css";
|
|
import VueOfficeDocx from "@vue-office/docx";
|
|
|
|
defineOptions({
|
|
name: "Word"
|
|
});
|
|
|
|
const docx = "https://xiaoxian521.github.io/hyperlink/other/word.docx";
|
|
|
|
function rendered() {
|
|
console.log("渲染完成");
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<vue-office-docx :src="docx" @rendered="rendered" />
|
|
</template>
|