mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
layout for import books view
This commit is contained in:
parent
62b432c1ab
commit
0d5e827503
1 changed files with 14 additions and 9 deletions
|
|
@ -1,13 +1,18 @@
|
|||
<template>
|
||||
<ImportBooksDirectorySelection
|
||||
:loading="isLoading"
|
||||
@scan="(directory) => doScan(directory)"
|
||||
/>
|
||||
<ImportBooksTransientBooksTable
|
||||
v-if="transientBooks"
|
||||
:loading="isLoading"
|
||||
:books="transientBooks"
|
||||
/>
|
||||
<v-container
|
||||
fluid
|
||||
class="pa-0 pa-sm-4 h-100 h-sm-auto"
|
||||
>
|
||||
<ImportBooksDirectorySelection
|
||||
:loading="isLoading"
|
||||
@scan="(directory) => doScan(directory)"
|
||||
/>
|
||||
<ImportBooksTransientBooksTable
|
||||
v-if="transientBooks"
|
||||
:loading="isLoading"
|
||||
:books="transientBooks"
|
||||
/>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
|
|
|||
Loading…
Reference in a new issue