Files
uniapp/components/lime-painter/components/l-painter-image/l-painter-image.vue
T
2025-08-06 17:17:48 +08:00

28 lines
367 B
Vue

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