feat: Implement creating tasks UI for network profiling widget (#193)

This commit is contained in:
Fine0830
2022-11-28 17:57:23 +08:00
committed by GitHub
parent 23e9742946
commit d8f91bbdf3
10 changed files with 344 additions and 34 deletions

View File

@@ -24,8 +24,8 @@ import { ref } from "vue";
import type { PropType } from "vue";
interface Option {
label: string;
value: string;
label: string | number;
value: string | number;
}
/*global defineProps, defineEmits */