mirror of
https://github.com/dataease/dataease.git
synced 2025-02-27 22:15:43 +08:00
17 lines
627 B
JavaScript
17 lines
627 B
JavaScript
![]() |
import Vue from 'vue'
|
||
|
|
||
|
import Picture from '@/components/canvas/custom-component/Picture'
|
||
|
import VText from '@/components/canvas/custom-component/VText'
|
||
|
import VButton from '@/components/canvas/custom-component/VButton'
|
||
|
import Group from '@/components/canvas/custom-component/Group'
|
||
|
import RectShape from '@/components/canvas/custom-component/RectShape'
|
||
|
import UserView from '@/components/canvas/custom-component/UserView'
|
||
|
|
||
|
Vue.component('Picture', Picture)
|
||
|
Vue.component('VText', VText)
|
||
|
Vue.component('VButton', VButton)
|
||
|
Vue.component('Group', Group)
|
||
|
Vue.component('RectShape', RectShape)
|
||
|
Vue.component('UserView', UserView)
|
||
|
|