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 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: '单据类型'