树
This commit is contained in:
15
src/views/govern/device/managePopup.vue
Normal file
15
src/views/govern/device/managePopup.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<el-dialog class="cn-operate-dialog" v-model="dialogVisible" title="设备模版分组">111</el-dialog>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, inject } from 'vue'
|
||||
|
||||
const dialogVisible = ref(false)
|
||||
const popupData = ref<any[]>([])
|
||||
const open = (data: any[]) => {
|
||||
dialogVisible.value = true
|
||||
popupData.value = data
|
||||
}
|
||||
|
||||
defineExpose({ open })
|
||||
</script>
|
||||
Reference in New Issue
Block a user