2024-03-30 18:04:30 +08:00
|
|
|
<script setup>
|
|
|
|
import { onMounted } from 'vue'
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
document.body.style.setProperty('--el-color-primary', '#1890ff');
|
|
|
|
})
|
2024-03-30 09:23:34 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-03-30 18:04:30 +08:00
|
|
|
<router-view />
|
2024-03-30 09:23:34 +08:00
|
|
|
</template>
|
|
|
|
|
2024-03-30 18:04:30 +08:00
|
|
|
<style lang="scss">
|
|
|
|
.el-button:focus{
|
|
|
|
outline: none;
|
2024-03-30 09:23:34 +08:00
|
|
|
}
|
|
|
|
</style>
|