edit
This commit is contained in:
parent
ef0eb903a7
commit
c89056d7f1
1670
src/components/editor/CustomEditor.vue
Normal file
1670
src/components/editor/CustomEditor.vue
Normal file
File diff suppressed because it is too large
Load Diff
@ -10,6 +10,7 @@ import {
|
|||||||
} from '@/store'
|
} from '@/store'
|
||||||
import ws from '@/connect'
|
import ws from '@/connect'
|
||||||
import { ServePublishMessage, ServeSendVote } from '@/api/chat'
|
import { ServePublishMessage, ServeSendVote } from '@/api/chat'
|
||||||
|
import CustomEditor from '@/components/editor/CustomEditor.vue'
|
||||||
import { throttle, getVideoImage } from '@/utils/common'
|
import { throttle, getVideoImage } from '@/utils/common'
|
||||||
import { parseTime } from '@/utils/datetime'
|
import { parseTime } from '@/utils/datetime'
|
||||||
import Editor from '@/components/editor/Editor.vue'
|
import Editor from '@/components/editor/Editor.vue'
|
||||||
@ -342,7 +343,8 @@ onMounted(() => {
|
|||||||
<footer class="el-footer">
|
<footer class="el-footer">
|
||||||
<MultiSelectFooter v-if="dialogueStore.isOpenMultiSelect" />
|
<MultiSelectFooter v-if="dialogueStore.isOpenMultiSelect" />
|
||||||
|
|
||||||
<Editor v-else @editor-event="onEditorEvent" :vote="talk_type == 2" :members="members" />
|
<!-- <Editor v-else @editor-event="onEditorEvent" :vote="talk_type == 2" :members="members" /> -->
|
||||||
|
<CustomEditor v-else @editor-event="onEditorEvent" :vote="talk_type == 2" :members="members" />
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<HistoryRecord
|
<HistoryRecord
|
||||||
|
@ -46,9 +46,9 @@ export default defineConfig(({ mode }) => {
|
|||||||
vueJsx({}),
|
vueJsx({}),
|
||||||
compressPlugin(),
|
compressPlugin(),
|
||||||
UnoCSS(),
|
UnoCSS(),
|
||||||
vueDevTools({
|
// vueDevTools({
|
||||||
launchEditor: 'trae',
|
// launchEditor: 'trae',
|
||||||
})
|
// })
|
||||||
],
|
],
|
||||||
define: {
|
define: {
|
||||||
__APP_ENV__: env.APP_ENV
|
__APP_ENV__: env.APP_ENV
|
||||||
|
Loading…
Reference in New Issue
Block a user