mini-rbac/frontend/src/hooks/useModal.js
2022-09-19 09:39:18 +08:00

11 lines
256 B
JavaScript

import { ref } from 'vue'
export default () => {
// 控制modal显示
const showModal = ref(false)
// 编辑数据时需要的 数据id
const updateId = ref()
// 表单ref对象
const formRef = ref()
return { showModal, updateId, formRef }
}