init
parents
Showing
.gitignore
0 → 100644
README.md
0 → 100644
babel.config.js
0 → 100644
jsconfig.json
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
| { | |||
| "name": "vue3-demo", | |||
| "version": "0.1.0", | |||
| "private": true, | |||
| "scripts": { | |||
| "serve": "vue-cli-service serve", | |||
| "build": "vue-cli-service build", | |||
| "lint": "vue-cli-service lint" | |||
| }, | |||
| "dependencies": { | |||
| "@js-preview/docx": "^1.6.0", | |||
| "@js-preview/excel": "^1.7.3", | |||
| "@js-preview/pdf": "^2.0.0", | |||
| "@vue-office/docx": "^1.6.0", | |||
| "@vue-office/excel": "^1.7.3", | |||
| "@vue-office/pdf": "^2.0.0", | |||
| "core-js": "^3.8.3", | |||
| "element-plus": "^2.6.2", | |||
| "vue": "^3.2.13", | |||
| "vue-demi": "^0.14.6", | |||
| "vue-router": "^4.3.0" | |||
| }, | |||
| "devDependencies": { | |||
| "@babel/core": "^7.12.16", | |||
| "@babel/eslint-parser": "^7.12.16", | |||
| "@vue/cli-plugin-babel": "~5.0.0", | |||
| "@vue/cli-plugin-eslint": "~5.0.0", | |||
| "@vue/cli-service": "~5.0.0", | |||
| "eslint": "^7.32.0", | |||
| "eslint-plugin-vue": "^8.0.3" | |||
| }, | |||
| "eslintConfig": { | |||
| "root": true, | |||
| "env": { | |||
| "node": true | |||
| }, | |||
| "extends": [ | |||
| "plugin:vue/vue3-essential", | |||
| "eslint:recommended" | |||
| ], | |||
| "parserOptions": { | |||
| "parser": "@babel/eslint-parser" | |||
| }, | |||
| "rules": {} | |||
| }, | |||
| "browserslist": [ | |||
| "> 1%", | |||
| "last 2 versions", | |||
| "not dead", | |||
| "not ie 11" | |||
| ] | |||
| } |
public/favicon.ico
0 → 100644
File added
public/index.html
0 → 100644
src/App.vue
0 → 100644
src/assets/logo.png
0 → 100644
6.69 KB
src/components/JsPreviewDocx.vue
0 → 100644
src/components/JsPreviewExcel.vue
0 → 100644
src/components/JsPreviewPdf.vue
0 → 100644
src/components/VueOfficeDocx.vue
0 → 100644
src/components/VueOfficeExcel.vue
0 → 100644
src/components/VueOfficePdf.vue
0 → 100644
src/main.js
0 → 100644
src/routes.js
0 → 100644
vue.config.js
0 → 100644