# 常用

	const props = defineProps({
		keyName: { type: String,default:"0" }
	});
    const emit = defineEmits([
		'close',
		'success'
	]);
    defineExpose({
        tetse(){
            alert('hello world')
        }
    })
1
2
3
4
5
6
7
8
9
10
11
12