npm i vue-doc-preview
App.vue
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<template> <div> <h1>Upload and Preview DOCX File</h1> <div style="margin-top: 20px"> <h2>Preview</h2> <VueDocPreview value="# VueDocPreview\n**Markdown Test**```" type="markdown" /> <VueDocPreview value="newteach.pbworks.com%2Ff%2Fele%2Bnewsletter.docx" type="office" /> <VueDocPreview value="Normal Text" type="text" /> </div> </div> </template> <script> import VueDocPreview from "vue-doc-preview"; export default { components: { VueDocPreview, } }; </script> |