br-dionysus 0.9.16 → 0.9.18
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/README.md +9 -1
- package/dist/br-dionysus.es.js +2309 -2298
- package/dist/br-dionysus.umd.js +8 -8
- package/dist/packages/Hook/useZIndex/useGlobalZIndex.d.ts +6 -5
- package/dist/packages/index.d.ts +2 -0
- package/package.json +1 -1
- package/packages/Hook/useZIndex/useGlobalZIndex.ts +25 -18
- package/packages/MNewSelectTable/docs/demo.vue +9 -1
- package/packages/index.ts +2 -0
package/README.md
CHANGED
|
@@ -315,9 +315,17 @@ const test = ref<number>(0)
|
|
|
315
315
|
</template>
|
|
316
316
|
|
|
317
317
|
<script setup lang="ts">
|
|
318
|
-
import { ref, onMounted } from 'vue'
|
|
318
|
+
import { ref, onMounted, watch } from 'vue'
|
|
319
|
+
import { useZIndex } from 'element-plus'
|
|
319
320
|
import { Page } from 'packages/typings/class'
|
|
320
321
|
|
|
322
|
+
const zIndex = useZIndex()
|
|
323
|
+
console.log('zIndex', zIndex.currentZIndex.value)
|
|
324
|
+
|
|
325
|
+
watch(() => zIndex.currentZIndex.value, () => {
|
|
326
|
+
console.log('ssss')
|
|
327
|
+
})
|
|
328
|
+
|
|
321
329
|
const commodityOptionsTitle: TableTitle[] = [{
|
|
322
330
|
prop: 'PRDocType',
|
|
323
331
|
label: '单据类型'
|