UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

21 lines (18 loc) 415 B
import { getPropsWatch, getPropsData, setPropsToData } from '../common/component-handler/component-handler'; export function getDialogMixin(dialogProps) { return { data() { return { ...getPropsData(this, dialogProps), }; }, watch: { ...getPropsWatch(dialogProps), }, methods: { setData(data) { setPropsToData.call(this, data); }, }, }; }