移动系统liao
2024-05-21 44e7987a5884ea2aa334bccca6983d9536c1e69b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<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>