mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
update
This commit is contained in:
parent
151fd1563c
commit
fa1e7f13d3
@ -112,7 +112,7 @@ export const mutations: MutationTree<State> = {
|
|||||||
state.snapshotLength = length
|
state.snapshotLength = length
|
||||||
},
|
},
|
||||||
|
|
||||||
// keyBoard
|
// keyboard
|
||||||
|
|
||||||
[MutationTypes.SET_CTRL_KEY_STATE](state, isActive: boolean) {
|
[MutationTypes.SET_CTRL_KEY_STATE](state, isActive: boolean) {
|
||||||
state.ctrlKeyState = isActive
|
state.ctrlKeyState = isActive
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import mitt, { Emitter } from 'mitt'
|
import mitt, { Emitter } from 'mitt'
|
||||||
|
|
||||||
export enum EMITTER_EVENTS {
|
export enum EMITTER_EVENTS {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
const emitter: Emitter = mitt()
|
const emitter: Emitter = mitt()
|
||||||
|
|
||||||
|
@ -14,13 +14,12 @@
|
|||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<div class="background" :style="{ ...backgroundStyle }"></div>
|
<div class="background" :style="{ ...backgroundStyle }"></div>
|
||||||
|
|
||||||
<template v-for="(element, index) in slide.elements" :key="element.elId">
|
|
||||||
<BaseElement
|
<BaseElement
|
||||||
|
v-for="(element, index) in slide.elements"
|
||||||
|
:key="element.elId"
|
||||||
:elementInfo="element"
|
:elementInfo="element"
|
||||||
:elementIndex="index + 1"
|
:elementIndex="index + 1"
|
||||||
/>
|
/>
|
||||||
</template>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -73,21 +73,5 @@ export default defineComponent({
|
|||||||
background-color: rgba(27, 110, 232, 0.3);
|
background-color: rgba(27, 110, 232, 0.3);
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style-type: disc;
|
|
||||||
padding-inline-start: 30px;
|
|
||||||
li {
|
|
||||||
list-style-type: disc;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
list-style-type: decimal;
|
|
||||||
padding-inline-start: 30px;
|
|
||||||
li {
|
|
||||||
list-style-type: decimal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -198,22 +198,6 @@ export default defineComponent({
|
|||||||
background-color: rgba(27, 110, 232, 0.3);
|
background-color: rgba(27, 110, 232, 0.3);
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
|
||||||
list-style-type: disc;
|
|
||||||
padding-inline-start: 30px;
|
|
||||||
li {
|
|
||||||
list-style-type: disc;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
list-style-type: decimal;
|
|
||||||
padding-inline-start: 30px;
|
|
||||||
li {
|
|
||||||
list-style-type: decimal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.operate {
|
.operate {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user