l-painter-image.vue 354 B

123456789101112131415161718192021222324252627
  1. <template>
  2. </template>
  3. <script>
  4. import {parent, children} from '../common/relation';
  5. export default {
  6. name: 'lime-painter-image',
  7. mixins:[children('painter')],
  8. props: {
  9. css: [String, Object],
  10. src: String
  11. },
  12. data() {
  13. return {
  14. type: 'image',
  15. el: {
  16. css: {},
  17. src: null
  18. },
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>