zyejMAll-mobile/uni_modules/lime-painter/components/l-painter-qrcode/l-painter-qrcode.vue

28 lines
371 B
Vue
Raw Normal View History

2024-08-07 10:31:42 +08:00
<template>
</template>
<script>
import {parent, children} from '../common/relation';
export default {
name: 'lime-painter-qrcode',
mixins:[children('painter')],
props: {
id: String,
css: [String, Object],
text: String
},
data() {
return {
type: 'qrcode',
el: {
css: {},
text: null
},
}
}
}
</script>
<style>
</style>