49 lines
1.0 KiB
Vue
49 lines
1.0 KiB
Vue
<template>
|
|
<SmartModal v-if="show" @close="hideModal">
|
|
<template #header>
|
|
<h3 class="heading">{{ $t("import_curl") }}</h3>
|
|
<div>
|
|
<button class="icon button" @click="hideModal">
|
|
<i class="material-icons">close</i>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
<template #body>
|
|
<textarea
|
|
id="import-curl"
|
|
class="textarea"
|
|
autofocus
|
|
rows="8"
|
|
:placeholder="$t('enter_curl')"
|
|
></textarea>
|
|
</template>
|
|
<template #footer>
|
|
<span></span>
|
|
<span>
|
|
<button class="icon button" @click="hideModal">
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
<button class="icon button primary" @click="handleImport">
|
|
{{ $t("import") }}
|
|
</button>
|
|
</span>
|
|
</template>
|
|
</SmartModal>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
show: Boolean,
|
|
},
|
|
methods: {
|
|
hideModal() {
|
|
this.$emit("hide-modal")
|
|
},
|
|
handleImport() {
|
|
this.$emit("handle-import")
|
|
},
|
|
},
|
|
}
|
|
</script>
|