daoji_h5/uni_modules/lime-painter/components/l-painter-view/l-painter-view.vue

30 lines
398 B
Vue
Raw Permalink Normal View History

2024-03-21 05:53:51 +00:00
<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>