This commit is contained in:
tamaina 2023-07-18 03:39:10 +00:00
parent 76145701af
commit b2c1f5873d
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<script lang="ts">
import { defineComponent, h, PropType, TransitionGroup, useCssModule } from 'vue';
import { defineComponent, h, PropType, TransitionGroup, useCssModule, watch } from 'vue';
import MkAd from '@/components/global/MkAd.vue';
import { isDebuggerEnabled, stackTraceInstances } from '@/debug';
import { i18n } from '@/i18n';
@ -41,6 +41,8 @@ export default defineComponent({
},
setup(props, { slots, expose }) {
watch(() => props.denyMoveTransition, () => console.log('denyMoveTransition changed', props.denyMoveTransition));
const $style = useCssModule(); // 使
function getDateText(time: string) {
const date = new Date(time).getDate();