feat: 关系配置通用组件

This commit is contained in:
leiqiaochu 2023-09-25 11:51:01 +08:00
parent b7849f4d07
commit bf0df077a9
1 changed files with 4 additions and 2 deletions

View File

@ -1,11 +1,13 @@
<template> <template>
<j-modal visible title="关系绑定"> <j-drawer :visible="true" title="关系绑定" placement="right" @close="closeDrawer" :width="500">
</j-modal> </j-drawer>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
const closeDrawer = () =>{
}
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
</style> </style>