Drawer
抽屉式容器对话框,与 Modal 不同的是 Drawer 显示于屏幕的边缘,交互上不会强制模态化,在使用场景上会更倾向于作为信息的展示或是轻度的交互内容
实例
抽屉对话框
ts
import { DialogDrawer, DialogAlert } from 'v-dialogs'
import UserProfile from './UserProfile.vue'
DialogDrawer(UserProfile, {
width: 700,
title: 'User Profile',
placement: 'left',
params: {
userId: 1,
userName: 'Terry Zeng'
},
callback: data => {
DialogAlert(`Received message: ${data}`)
}
})
UserProfile.vue
文件内容
vue
<template>
<div>
<div>User name: {{ profile.name }}</div>
<div>User age: {{ profile.age }}</div>
<button
type="button"
@click="close"
>Close</button>
</div>
</template>
<script setup>
import { getUserProfile } from './data'
// declare `close` event
const emit = defineEmits(['close'])
const profile = getUserProfile()
// emit `close` event to close Drawer dialog
const close = () => emit('close', profile.name)
</script>
显示位置
界面定制化
ts
DialogDrawer(component, { backdrop: false })
DialogDrawer(component, { closeButton: false })
DialogDrawer(component, { header: false })
DialogDrawer(component, { backdropClose: false })
组件形式
除了函数式的打开方式,v-dialogs
也支持组件形式的打开方式,只需要将组件包裹在 DialogDrawerBox
组件中即可,相应的配置项直接以 prop 的方式传入即可
vue
<template>
<div>
<DialogDrawerBox
v-model:visible="visible"
:header="false"
>
<MyComponent @close="close" />
</DialogDrawerBox>
<button
type="button"
@click="visible = true"
>
Open component in drawer
</button>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { DialogDrawerBox } from 'v-dialogs'
import MyComponent from './MyComponent.vue'
const visible = ref(false)
function close () {
visible.value = false
}
</script>
API
ts
type ComponentResult = VNode | Component
type ComponentContent = ComponentResult | (() => ComponentResult)
function DialogDrawer(
component: ComponentContent,
options?: DrawerOptions
): Function
配置选项 DrawerOptions
的类型描述
ts
interface DrawerOptions {
/**
* 自定义样式类名
*/
customClass?: string
/**
* 显示标题栏
* @default true
*/
header?: boolean
/**
* 标题栏文本内容
*/
title?: string
/**
* 对话框宽度,仅适用于 `left` 与 `right` 两个位置
*/
width?: number
/**
* 对话框高度,仅适用于 `top` 与 `bottom` 两个位置
*/
height?: number
/**
* 传递给组件作为 props 的参数集
*/
params?: Record<string, unknown>
/**
* 关闭按钮
* @default true
*/
closeButton?: boolean
/**
* 显示位置
* @default 'right'
*/
placement?: 'left' | 'right' | 'top' | 'bottom'
/**
* 背景遮罩
* @default true
*/
backdrop?: boolean
/**
* 点击遮罩关闭对话框
* @default true
*/
backdropClose?: boolean
}