|
@@ -1,16 +1,14 @@
|
|
|
<template>
|
|
|
<SmartModal v-if="show" @close="hideModal">
|
|
|
- <div slot="header">
|
|
|
- <div class="row-wrapper">
|
|
|
- <h3 class="heading">{{ $t("new_collection") }}</h3>
|
|
|
- <div>
|
|
|
- <button class="icon button" @click="hideModal">
|
|
|
- <i class="material-icons">close</i>
|
|
|
- </button>
|
|
|
- </div>
|
|
|
+ <template #header>
|
|
|
+ <h3 class="heading">{{ $t("new_collection") }}</h3>
|
|
|
+ <div>
|
|
|
+ <button class="icon button" @click="hideModal">
|
|
|
+ <i class="material-icons">close</i>
|
|
|
+ </button>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div slot="body" class="flex flex-col">
|
|
|
+ </template>
|
|
|
+ <template #body>
|
|
|
<label for="selectLabel">{{ $t("label") }}</label>
|
|
|
<input
|
|
|
id="selectLabel"
|
|
@@ -20,20 +18,18 @@
|
|
|
:placeholder="$t('my_new_collection')"
|
|
|
@keyup.enter="addNewCollection"
|
|
|
/>
|
|
|
- </div>
|
|
|
- <div slot="footer">
|
|
|
- <div class="row-wrapper">
|
|
|
- <span></span>
|
|
|
- <span>
|
|
|
- <button class="icon button" @click="hideModal">
|
|
|
- {{ $t("cancel") }}
|
|
|
- </button>
|
|
|
- <button class="icon button primary" @click="addNewCollection">
|
|
|
- {{ $t("save") }}
|
|
|
- </button>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ </template>
|
|
|
+ <template #footer>
|
|
|
+ <span></span>
|
|
|
+ <span>
|
|
|
+ <button class="icon button" @click="hideModal">
|
|
|
+ {{ $t("cancel") }}
|
|
|
+ </button>
|
|
|
+ <button class="icon button primary" @click="addNewCollection">
|
|
|
+ {{ $t("save") }}
|
|
|
+ </button>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
</SmartModal>
|
|
|
</template>
|
|
|
|