Files
temu-plugin/src/view/media/imageTranslate.vue

32 lines
468 B
Vue
Raw Normal View History

2024-11-04 17:47:02 +08:00
<script>
import AiDetail from "@/components/AiDetail.vue";
export default {
name: "imageTranslate",
components: {AiDetail},
data() {
return {
form: {}
}
}
}
</script>
<template>
<ai-detail class="imageTranslate">
<ai-title slot="title" title="图片翻译" isShowBottomBorder/>
<template #content>
<el-form>
</el-form>
</template>
</ai-detail>
</template>
<style scoped lang="scss">
.imageTranslate {
}
</style>