detail-desc.vue 776 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <el-dialog
  3. v-if="visible"
  4. :title="title"
  5. width="30rem"
  6. :visible.sync="visible"
  7. :before-close="(_) => $emit('visible', false)"
  8. >
  9. <pre style="white-space: pre-wrap" v-if="type == 'value'">{{
  10. content
  11. }}</pre>
  12. <div v-if="type == 'html'" v-html="content"></div>
  13. </el-dialog>
  14. </template>
  15. <script>
  16. export default {
  17. name: "DetailDesc",
  18. props: {
  19. content: {
  20. type: String,
  21. },
  22. visible: {
  23. type: Boolean,
  24. },
  25. type: {
  26. type: String,
  27. default: "value",
  28. },
  29. title: {
  30. type: String,
  31. default: "简介",
  32. },
  33. },
  34. model: {
  35. prop: "visible",
  36. event: "visible",
  37. },
  38. };
  39. </script>
  40. <style lang="scss" scoped>
  41. /deep/ .el-dialog__body {
  42. padding: 0 30px 20px;
  43. }
  44. </style>