|
@@ -21,6 +21,7 @@ import VideoStylePanel from "./VideoStylePanel.vue"
|
|
|
import AudioStylePanel from "./AudioStylePanel.vue"
|
|
|
import MultiStylePanel from "./MultiStylePanel.vue"
|
|
|
import CloudCoachStylePanel from "./CloudCoachStylePanel.vue"
|
|
|
+import EnjoyStylePanel from "./EnjoyStylePanel.vue"
|
|
|
|
|
|
const panelMap = {
|
|
|
[ElementTypes.TEXT]: TextStylePanel,
|
|
@@ -35,7 +36,8 @@ const panelMap = {
|
|
|
const elementSubtypeMap = {
|
|
|
[ElementSubtypeTypes.AUDIO]: AudioStylePanel,
|
|
|
[ElementSubtypeTypes.VIDEO]: VideoStylePanel,
|
|
|
- [ElementSubtypeTypes.SING_PLAY]: CloudCoachStylePanel
|
|
|
+ [ElementSubtypeTypes.SING_PLAY]: CloudCoachStylePanel,
|
|
|
+ [ElementSubtypeTypes.ENJOY]: EnjoyStylePanel
|
|
|
}
|
|
|
const { activeElementIdList, activeElementList, handleElement, activeGroupElementId } = storeToRefs(useMainStore())
|
|
|
|