32 lines
468 B
Vue
32 lines
468 B
Vue
|
|
<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>
|