2020-12-11 00:29:29 +00:00
|
|
|
<template>
|
2021-03-01 03:58:14 +00:00
|
|
|
<SmartModal v-if="show" @close="hideModal">
|
2020-12-11 00:29:29 +00:00
|
|
|
<div slot="header">
|
2020-12-11 10:29:03 +00:00
|
|
|
<div class="row-wrapper">
|
|
|
|
|
<h3 class="title">{{ $t("import_curl") }}</h3>
|
|
|
|
|
<div>
|
|
|
|
|
<button class="icon" @click="hideModal">
|
|
|
|
|
<i class="material-icons">close</i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-12-11 00:29:29 +00:00
|
|
|
</div>
|
2020-12-11 16:54:34 +00:00
|
|
|
<div slot="body" class="flex flex-col">
|
2020-12-30 13:13:56 +00:00
|
|
|
<textarea id="import-curl" autofocus rows="8" :placeholder="$t('enter_curl')"></textarea>
|
2020-12-11 00:29:29 +00:00
|
|
|
</div>
|
|
|
|
|
<div slot="footer">
|
|
|
|
|
<div class="row-wrapper">
|
|
|
|
|
<span></span>
|
|
|
|
|
<span>
|
|
|
|
|
<button class="icon" @click="hideModal">
|
|
|
|
|
{{ $t("cancel") }}
|
|
|
|
|
</button>
|
|
|
|
|
<button class="icon primary" @click="handleImport">
|
|
|
|
|
{{ $t("import") }}
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-03-01 03:58:14 +00:00
|
|
|
</SmartModal>
|
2020-12-11 00:29:29 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
show: Boolean,
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
hideModal() {
|
|
|
|
|
this.$emit("hide-modal")
|
|
|
|
|
},
|
|
|
|
|
handleImport() {
|
|
|
|
|
this.$emit("handle-import")
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|