l-painter-view.vue 413 字节
<template>
	<view><slot/></view>
</template>

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

<style>
</style>