Files
guofu-admin/src/views/system/myApp/detail/components/app-url-search.vue
2024-07-23 05:24:43 +08:00

14 lines
206 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>