13 lines
274 B
Vue
13 lines
274 B
Vue
|
|
<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>
|