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