nidus-sync/ts/components/ReviewSiteColumnList.vue

13 lines
274 B
Vue
Raw Normal View History

2026-04-16 04:48:07 +00:00
<style scoped lang="scss"></style>
<template>
<p>list</p>
</template>
<script setup lang="ts">
interface Emits {
(e: "doSelectTask", id: number): void;
}
interface Props {}
const emit = defineEmits<Emits>();
const props = withDefaults(defineProps<Props>(), {});
</script>