mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-07-29 09:48:07 +08:00
35 lines
802 B
Vue
35 lines
802 B
Vue
<script lang="ts" setup>
|
|
// 输入参数
|
|
const props = defineProps({
|
|
title: String,
|
|
dataType: String,
|
|
})
|
|
|
|
// 代码
|
|
const codeString = ref('')
|
|
|
|
// 定义事件
|
|
const emit = defineEmits(['close', 'save'])
|
|
|
|
// 导入
|
|
function handleImport() {
|
|
emit('save', props.dataType, codeString)
|
|
emit('close')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<VDialog width="40rem" scrollable max-height="85vh" persistent>
|
|
<VCard :title="props.title" class="rounded-t">
|
|
<DialogCloseBtn @click="emit('close')" />
|
|
<VCardText class="pt-2">
|
|
<VTextarea v-model="codeString" />
|
|
</VCardText>
|
|
<VCardActions>
|
|
<VSpacer />
|
|
<VBtn variant="elevated" @click="handleImport" prepend-icon="mdi-import" class="px-5 me-3"> 导入 </VBtn>
|
|
</VCardActions>
|
|
</VCard>
|
|
</VDialog>
|
|
</template>
|