username@email.com
2024-10-29 a5851a4e906725b868bcfdaa8c59249523137586
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
27
28
<template>
    <text style="opacity: 0;height: 0;"><slot/></text>
</template>
 
<script>
    import {parent, children} from '../common/relation';
    export default {
        name: 'lime-painter-text',
        mixins:[children('painter')],
        props: {
            css: [String, Object],
            text: [String, Number],
            replace: Object,
        },
        data() {
            return {
                type: 'text',
                el: {
                    css: {},
                    text: null
                },
            }
        }
    }
</script>
 
<style>
</style>