sh-view 1.6.1 → 1.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sh-view",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.9",
|
|
4
4
|
"description": "基于vxe-table、view-ui-plus二次封装",
|
|
5
5
|
"main": "packages/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"tinymce": "^5.10.5",
|
|
33
33
|
"view-ui-plus": "^1.3.14",
|
|
34
34
|
"vue": "^3.3.4",
|
|
35
|
+
"vue-demi": "^0.13.11",
|
|
35
36
|
"vue-masonry": "^0.16.0",
|
|
36
37
|
"vue-ripple-directive": "^2.0.1",
|
|
37
38
|
"vue-router": "^4.2.2",
|
|
@@ -10,7 +10,6 @@ import ShIvForm from './global-components/sh-iv-form/index.vue'
|
|
|
10
10
|
import ShLayout from './global-components/sh-layout/index.vue'
|
|
11
11
|
import ShLoading from './global-components/sh-loading/index.vue'
|
|
12
12
|
import ShNoticeBar from './global-components/sh-noticebar/index.vue'
|
|
13
|
-
import ShPreview from './global-components/sh-preview/index.vue'
|
|
14
13
|
import ShPullRefresh from './global-components/sh-pull-refresh/index.vue'
|
|
15
14
|
import ShResult from './global-components/sh-result/index.vue'
|
|
16
15
|
import ShUpload from './global-components/sh-upload/index.vue'
|
|
@@ -35,7 +34,6 @@ const components = {
|
|
|
35
34
|
ShLayout,
|
|
36
35
|
ShLoading,
|
|
37
36
|
ShNoticeBar,
|
|
38
|
-
ShPreview,
|
|
39
37
|
ShPullRefresh,
|
|
40
38
|
ShResult,
|
|
41
39
|
ShUpload,
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
</template>
|
|
6
6
|
|
|
7
7
|
<script>
|
|
8
|
-
import ShWord from '@vue-office/docx'
|
|
8
|
+
import * as ShWord from '@vue-office/docx'
|
|
9
9
|
import '@vue-office/docx/lib/index.css'
|
|
10
|
-
import ShExcel from '@vue-office/excel'
|
|
10
|
+
import * as ShExcel from '@vue-office/excel'
|
|
11
11
|
import '@vue-office/excel/lib/index.css'
|
|
12
|
-
import ShPdf from '@vue-office/pdf'
|
|
12
|
+
import * as ShPdf from '@vue-office/pdf'
|
|
13
13
|
export default {
|
|
14
14
|
name: 'ShPreview',
|
|
15
15
|
components: {
|