34 lines
640 B
Vue
34 lines
640 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from "vue-router";
|
|
import { onMounted } from 'vue';
|
|
|
|
onMounted(() => {
|
|
document.title = '智慧湿地管理平台';
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@use "./styles/variables" as v;
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
background-color: v.$bg-color;
|
|
color: v.$text-primary;
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
|
|
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
</style>
|