28 lines
371 B
Vue
28 lines
371 B
Vue
<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>
|