| 12345678910111213141516171819202122232425262728293031323334 | <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,			type: {				type: String,				default: 'view'			},			css: [String, Object],		},		data() {			return {				// type: 'view',				el: {					css: {},					views:[]				},			}		},		mounted() {					}	}</script><style></style>
 |