2024-12-19 14:32:33 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
111
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, reactive, onMounted, nextTick } from 'vue';
|
|
|
|
|
|
|
|
|
|
//导入父组件传递的值
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
// 导入父组件定义的函数
|
|
|
|
|
const emit = defineEmits(['hideDialog']);
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped></style>
|