mirror of
https://github.com/gotson/komga.git
synced 2025-12-14 20:43:10 +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>
|
<template>
|
||||||
<ImportBooksDirectorySelection
|
<v-container
|
||||||
:loading="isLoading"
|
fluid
|
||||||
@scan="(directory) => doScan(directory)"
|
class="pa-0 pa-sm-4 h-100 h-sm-auto"
|
||||||
/>
|
>
|
||||||
<ImportBooksTransientBooksTable
|
<ImportBooksDirectorySelection
|
||||||
v-if="transientBooks"
|
:loading="isLoading"
|
||||||
:loading="isLoading"
|
@scan="(directory) => doScan(directory)"
|
||||||
:books="transientBooks"
|
/>
|
||||||
/>
|
<ImportBooksTransientBooksTable
|
||||||
|
v-if="transientBooks"
|
||||||
|
:loading="isLoading"
|
||||||
|
:books="transientBooks"
|
||||||
|
/>
|
||||||
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue