@ebiz/designer-components 0.0.49 → 0.0.50

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": "@ebiz/designer-components",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/main.js CHANGED
@@ -19,7 +19,6 @@ import {
19
19
  EbizRouteBreadcrumb,
20
20
  EbizFileUpload,
21
21
  EbizTabHeader,
22
- EbizMindmap,
23
22
  dataService
24
23
  } from './index.js'
25
24
 
@@ -46,7 +45,6 @@ app.component('EbizRemoteSelect', EbizRemoteSelect)
46
45
  app.component('EbizRouteBreadcrumb', EbizRouteBreadcrumb)
47
46
  app.component('EbizFileUpload', EbizFileUpload)
48
47
  app.component('EbizTabHeader', EbizTabHeader)
49
- app.component('EbizMindmap', EbizMindmap)
50
48
 
51
49
  // 注册数据服务
52
50
  app.config.globalProperties.$dataService = dataService
@@ -1,17 +1,15 @@
1
1
  <template>
2
2
  <div>
3
3
  <ebiz-route-breadcrumb />
4
- <ebiz-mindmap />
4
+ <!-- <ebiz-mindmap /> -->
5
5
  </div>
6
6
  </template>
7
7
 
8
8
  <script>
9
- import { EbizMindmap } from '@/index.js'
10
9
 
11
10
  export default {
12
11
  name: 'MindmapDemo',
13
12
  components: {
14
- EbizMindmap
15
13
  }
16
14
  }
17
15
  </script>