mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-23 01:09:26 +02:00
Add audiobook uploader
This commit is contained in:
parent
6cb253598b
commit
3dfd7ea035
8 changed files with 336 additions and 6 deletions
|
@ -1,6 +1,8 @@
|
|||
<template>
|
||||
<div class="w-full">
|
||||
<p class="px-1 text-sm font-semibold">{{ label }}</p>
|
||||
<p class="px-1 text-sm font-semibold">
|
||||
{{ label }}<em v-if="note" class="font-normal text-xs pl-2">{{ note }}</em>
|
||||
</p>
|
||||
<ui-text-input v-model="inputValue" :disabled="disabled" :type="type" class="w-full" />
|
||||
</div>
|
||||
</template>
|
||||
|
@ -10,6 +12,7 @@ export default {
|
|||
props: {
|
||||
value: [String, Number],
|
||||
label: String,
|
||||
note: String,
|
||||
type: {
|
||||
type: String,
|
||||
default: 'text'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue