mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-26 17:13:54 +08:00
30 lines
420 B
Vue
30 lines
420 B
Vue
<template>
|
|||
|
|
<div id="app">
|
||
|
|
<router-view/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
|
||
|
|
#app {
|
||
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
text-align: center;
|
||
|
|
color: #2c3e50;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav {
|
||
|
|
padding: 30px;
|
||
|
|
|
||
|
|
a {
|
||
|
|
font-weight: bold;
|
||
|
|
color: #2c3e50;
|
||
|
|
|
||
|
|
&.router-link-exact-active {
|
||
|
|
color: #42b983;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|