mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
code cleanup
This commit is contained in:
parent
7b53a969bc
commit
3d69ed003b
3 changed files with 7 additions and 12 deletions
|
|
@ -69,14 +69,9 @@
|
|||
|
||||
<script lang="ts">
|
||||
import CardSeries from '@/components/CardSeries.vue'
|
||||
import { LoadState } from '@/types/common'
|
||||
import Vue from 'vue'
|
||||
|
||||
enum LoadState {
|
||||
Loaded,
|
||||
NotLoaded,
|
||||
Loading
|
||||
}
|
||||
|
||||
export default Vue.extend({
|
||||
name: 'BrowseLibraries',
|
||||
components: { CardSeries },
|
||||
|
|
|
|||
|
|
@ -69,14 +69,9 @@
|
|||
|
||||
<script lang="ts">
|
||||
import CardBook from '@/components/CardBook.vue'
|
||||
import { LoadState } from '@/types/common'
|
||||
import Vue from 'vue'
|
||||
|
||||
enum LoadState {
|
||||
Loaded,
|
||||
NotLoaded,
|
||||
Loading
|
||||
}
|
||||
|
||||
export default Vue.extend({
|
||||
name: 'BrowseSeries',
|
||||
components: { CardBook },
|
||||
|
|
|
|||
5
komga-webui/src/types/common.ts
Normal file
5
komga-webui/src/types/common.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
export enum LoadState {
|
||||
Loaded,
|
||||
NotLoaded,
|
||||
Loading
|
||||
}
|
||||
Loading…
Reference in a new issue