├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── components │ ├── Markdown.vue │ ├── Office.vue │ └── TextPreview.vue ├── demo.vue ├── index.js ├── lib │ ├── highlight.js │ └── util.js └── main.js ├── test ├── dev.vue └── index.js ├── vue.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Markdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/components/Markdown.vue -------------------------------------------------------------------------------- /src/components/Office.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/components/Office.vue -------------------------------------------------------------------------------- /src/components/TextPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/components/TextPreview.vue -------------------------------------------------------------------------------- /src/demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/demo.vue -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/lib/highlight.js -------------------------------------------------------------------------------- /src/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/lib/util.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/src/main.js -------------------------------------------------------------------------------- /test/dev.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/test/dev.vue -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/test/index.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cainsyake/vue-doc-preview/HEAD/yarn.lock --------------------------------------------------------------------------------