33 lines
758 B
TypeScript
33 lines
758 B
TypeScript
import type { ExtractPropTypes } from 'vue'
|
|
import { CLICK_EVENT } from '../_constants'
|
|
import { commonProps } from '../_utils'
|
|
|
|
export const gridItemProps = {
|
|
...commonProps,
|
|
/**
|
|
* @description 文字
|
|
*/
|
|
text: String,
|
|
/**
|
|
* @description 点击后跳转的目标路由对象,同 vue-router 的 to 属性
|
|
*/
|
|
to: [String, Object],
|
|
/**
|
|
* @description 点击后跳转的链接地址
|
|
*/
|
|
url: String,
|
|
/**
|
|
* @description 是否在跳转时替换当前页面历史
|
|
*/
|
|
replace: Boolean,
|
|
background: String
|
|
}
|
|
|
|
export type GridItemProps = ExtractPropTypes<typeof gridItemProps>
|
|
|
|
export const gridItemEmits = {
|
|
[CLICK_EVENT]: (evt: MouseEvent) => evt instanceof Object,
|
|
}
|
|
|
|
export type GridItemEmits = typeof gridItemEmits
|