18 lines
317 B
Vue
18 lines
317 B
Vue
|
<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>
|