<template>
|
|
<div id="app">
|
|
<router-view />
|
|
<theme-picker />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ThemePicker from "@/components/ThemePicker"
|
|
|
|
export default {
|
|
name: "App",
|
|
components: { ThemePicker }
|
|
}
|
|
</script>
|
|
<style rel="stylesheet/scss" lang="scss">
|
|
#app .theme-picker {
|
|
display: none;
|
|
}
|
|
|
|
/*搜索区域样式 */
|
|
.search-area {
|
|
input{
|
|
width: 150px;
|
|
}
|
|
}
|
|
/*详情 */
|
|
.detail-container{
|
|
.header{
|
|
height: 40px;
|
|
line-height: 40px;
|
|
display: flex;
|
|
justify-items:flex-end;
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
|
|
}
|
|
}
|
|
</style>
|