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

27 lines
356 B
Vue
Raw Permalink Normal View History

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