committed by
GitHub
12 changed files with 86 additions and 4 deletions
@ -0,0 +1,23 @@ |
|||||
|
<script lang="ts" setup> |
||||
|
import { ref, watch } from 'vue'; |
||||
|
|
||||
|
import { useVbenModal } from '@vben/common-ui'; |
||||
|
|
||||
|
import { Slider } from 'ant-design-vue'; |
||||
|
|
||||
|
const blur = ref(5); |
||||
|
const [Modal, modalApi] = useVbenModal({ |
||||
|
overlayBlur: blur.value, |
||||
|
}); |
||||
|
watch(blur, (val) => { |
||||
|
modalApi.setState({ |
||||
|
overlayBlur: val, |
||||
|
}); |
||||
|
}); |
||||
|
</script> |
||||
|
<template> |
||||
|
<Modal title="遮罩层模糊"> |
||||
|
<p>调整滑块来改变遮罩层模糊程度:{{ blur }}</p> |
||||
|
<Slider v-model:value="blur" :max="30" :min="0" /> |
||||
|
</Modal> |
||||
|
</template> |
||||
Loading…
Reference in new issue