from.vue 592 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div>
  3. <van-form class="pragraph">
  4. <van-cell-group inset>
  5. <div
  6. class="text"
  7. contenteditable
  8. v-text="item.title"
  9. :style="item.title_style"
  10. ></div>
  11. <slot></slot>
  12. </van-cell-group>
  13. </van-form>
  14. <br />
  15. </div>
  16. </template>
  17. <script setup>
  18. import { defineProps } from 'vue';
  19. import 'vant/lib/index.css';
  20. defineProps({
  21. item: Object,
  22. });
  23. </script>
  24. <style scoped>
  25. .pragraph {
  26. font-weight: 400;
  27. }
  28. .text {
  29. outline: none;
  30. border: 1px solid #fff;
  31. }
  32. .text:focus {
  33. border-color: red;
  34. }
  35. </style>