56 lines
1.1 KiB
Vue
56 lines
1.1 KiB
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
<theme-picker />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ThemePicker from "@/components/ThemePicker";
|
|
|
|
export default {
|
|
name: "App",
|
|
components: { ThemePicker },
|
|
metaInfo() {
|
|
return {
|
|
title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
|
|
titleTemplate: title => {
|
|
return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
#app .theme-picker {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<style lang="scss">
|
|
.nest-menu,.el-submenu__title{
|
|
position: relative;
|
|
.todo_num_tips{
|
|
position: absolute;
|
|
right: 36px;
|
|
background-color: #f56c6c;
|
|
border-radius: 10px;
|
|
color: #fff;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
padding: 0 6px;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
border: 1px solid #fff;
|
|
cursor: pointer;
|
|
top: 16px;
|
|
display: none;
|
|
}
|
|
}
|
|
.el-submenu__title{
|
|
.todo_num_tips{
|
|
top:20px;
|
|
}
|
|
}
|
|
</style> |