1234567891011121314151617181920212223242526272829 |
- <template>
- <view><slot/></view>
- </template>
- <script>
- import {parent, children} from '../common/relation';
- export default {
- name: 'lime-painter-view',
- mixins:[children('painter'), parent('painter')],
- props: {
- css: [String, Object],
- },
- data() {
- return {
- type: 'view',
- el: {
- css: {},
- views:[]
- },
- }
- },
- mounted() {
-
- }
- }
- </script>
- <style>
- </style>
|