@ebiz/designer-components 0.0.19-beta.11 → 0.0.19-beta.13

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.
@@ -1,36 +0,0 @@
1
- <template>
2
- <div>
3
- <EbizTreeMergeTable :type="type" :id="id" @success="handleSuccess"/>
4
- </div>
5
- </template>
6
-
7
- <script>
8
- export default {
9
- name: 'EbizTreeMergeTableConfig'
10
- }
11
- </script>
12
-
13
- <script setup>
14
- import { defineProps, defineEmits } from 'vue'
15
- import EbizTreeMergeTable from './EbizTreeMergeTable.vue'
16
-
17
- const props = defineProps({
18
- type: {
19
- type: String,
20
- default: 'role' // role,post 角色,岗位
21
- },
22
- id: {
23
- type: String,
24
- default: ''
25
- }
26
- })
27
-
28
- const emits = defineEmits(['success'])
29
-
30
- const handleSuccess = () => {
31
- emits('success')
32
- }
33
- </script>
34
-
35
- <style scoped>
36
- </style>