19 lines
307 B
Vue
19 lines
307 B
Vue
|
<template>
|
||
|
<div>asda</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref, watch, onUnmounted } from "vue";
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: "ComponentSignalSourceDialog",
|
||
|
|
||
|
components: {},
|
||
|
props: {},
|
||
|
emits: [],
|
||
|
setup() {
|
||
|
return {};
|
||
|
},
|
||
|
});
|
||
|
</script>
|