ElemPane.vue 450 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="elem-pane" :style="styles"></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "elem-pane",
  7. props: {
  8. data: {
  9. type: Object
  10. }
  11. },
  12. computed: {
  13. styles() {
  14. return {
  15. backgroundColor: this.data.bgColor,
  16. borderStyle: this.data.style,
  17. borderWidth: this.data.bold,
  18. borderColor: this.data.color
  19. };
  20. }
  21. },
  22. data() {
  23. return {};
  24. },
  25. methods: {}
  26. };
  27. </script>