Right.vue 501 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="h-full box-border py-6 px-7">
  3. <div class="w-full h-full bg-white box-border p-3 sm:p-16 overflow-y-auto">
  4. <el-input
  5. type="textarea"
  6. :value="msg"
  7. autosize
  8. :input-style="{ boxShadow: 'none' }"
  9. resize="none"
  10. placeholder="生成的内容……"
  11. />
  12. </div>
  13. </div>
  14. </template>
  15. <script setup lang="ts">
  16. defineProps({
  17. msg: {
  18. type: String,
  19. default: ''
  20. }
  21. })
  22. </script>
  23. <style scoped></style>