移动系统liao
2024-05-29 f8ed0a1ee63cad489c67caaf76e9527a06da2947
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>