fixed import type issue

This commit is contained in:
Peter Olu 2022-07-09 12:32:26 -07:00
parent 41beeee0f5
commit a924494f8d

View File

@ -36,7 +36,8 @@ limitations under the License. -->
</div>
</template>
<script lang="ts" setup>
import type { PropType, computed, onMounted, onBeforeUnmount } from "vue";
import type { PropType } from "vue";
import {computed, onMounted, onBeforeUnmount } from "vue"
import TraceList from "../related/trace/TraceList.vue";
import TraceDetail from "../related/trace/Detail.vue";
import { useI18n } from "vue-i18n";