Files
douyin-card-message/admin/src/App.vue
T
2024-09-30 14:08:38 +08:00

26 lines
397 B
Vue

<script setup lang="ts">
import { nextTick, onMounted } from 'vue'
import { appStore } from '@/stores'
import { handleThemeStyle } from '@/utils/theme'
onMounted(() => {
// 初始化主题
nextTick(() => {
handleThemeStyle(appStore.theme.primaryColor)
})
})
</script>
<template>
<RouterView />
</template>
<style >
.notify {
:is(img) {
width: 100% !important;
}
}
</style>