plantScreen/src/App.vue

40 lines
631 B
Vue
Raw Normal View History

2023-12-01 18:22:09 +08:00
<script setup lang="ts">
// @ts-ignore
import Header from "@/components/Header.vue"
2023-12-14 20:08:53 +08:00
import Login from "@/view/login.vue"
2023-12-02 18:36:12 +08:00
let Token =localStorage.getItem('TOKEN')
2023-12-01 18:22:09 +08:00
</script>
<template>
<!-- <div>sadas</div> -->
2023-12-14 20:08:53 +08:00
<!-- <div class="main-box" > -->
2023-12-01 18:22:09 +08:00
<router-view></router-view>
2023-12-14 20:08:53 +08:00
<!-- </div> -->
2023-12-02 18:36:12 +08:00
<div>
2023-12-01 18:22:09 +08:00
</div>
</template>
<style lang="scss">
@import '/static/font/font.css';
* {
margin: 0;
padding: 0;
}
2023-12-14 20:08:53 +08:00
2023-12-01 18:22:09 +08:00
.color-font {
font-family: FZCYJ;
color: #E5EFFF;
background: linear-gradient(to bottom, #DAE8FE 30%, #53A0FF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>