l-painter-view.vue 398 B

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