mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 08:32:14 +00:00
upload request prototype UI
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<!--<label class="input-label">{{ label }}:</label>-->
|
||||
<div class="input-wrapper focus-within-border-theme" :class="{ 'is-error': isError }" @click="$refs.input.focus()">
|
||||
<div
|
||||
class="input-wrapper focus-within-border-theme"
|
||||
:class="{ 'is-error': isError }"
|
||||
@click="$refs.input.focus()"
|
||||
>
|
||||
<div class="email-list">
|
||||
<div class="email-tag bg-theme-100" :class="{ 'mb-offset': getCharactersLength > 45 }" v-for="(email, i) in emails" :key="i">
|
||||
<div
|
||||
class="email-tag bg-theme-100"
|
||||
:class="{ 'mb-offset': getCharactersLength > 45 }"
|
||||
v-for="(email, i) in emails"
|
||||
:key="i"
|
||||
>
|
||||
<span class="text-theme">{{ email }}</span>
|
||||
<x-icon @click="removeEmail(email)" class="icon" size="14" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user