refactor: adjust types.ts location

This commit is contained in:
Hakadao
2023-10-08 01:15:12 +08:00
parent 7fa697e26f
commit 39a016cb52
3 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { Ref } from 'vue'
import type { AppVideoModel, VideoModel } from './types'
import type { AppVideoModel, VideoModel } from '../types'
import emitter from '~/utils/mitt'
import { settings } from '~/logic'
@@ -161,3 +161,4 @@ function jumpToLoginPage() {
<style lang="scss" scoped>
</style>
../types

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { Ref } from 'vue'
import type { AppVideoModel, VideoModel } from './types'
import type { AppVideoModel, VideoModel } from '../types'
import emitter from '~/utils/mitt'
import { accessKey, settings } from '~/logic'
import { LanguageType } from '~/enums/appEnums'
@@ -215,3 +215,4 @@ function jumpToLoginPage() {
<style lang="scss" scoped>
</style>
../types