l-painter-view.vue 375 B

1234567891011121314151617181920212223242526
  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. }
  22. </script>
  23. <style>
  24. </style>