Files
guofu-admin/src/views/system/company/detail/components/company-field-search.vue
2024-05-17 06:04:56 +08:00

14 lines
212 B
Vue

<template>
<a-button @click="add">添加资料</a-button>
</template>
<script lang="ts" setup>
const emit = defineEmits<{
(e: 'add'): void;
}>();
const add = () => {
emit('add');
};
</script>