40 lines
631 B
Vue
40 lines
631 B
Vue
<script setup lang="ts">
|
|
// @ts-ignore
|
|
import Header from "@/components/Header.vue"
|
|
import Login from "@/view/login.vue"
|
|
let Token =localStorage.getItem('TOKEN')
|
|
|
|
</script>
|
|
<template>
|
|
<!-- <div>sadas</div> -->
|
|
<!-- <div class="main-box" > -->
|
|
<router-view></router-view>
|
|
<!-- </div> -->
|
|
|
|
<div>
|
|
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
@import '/static/font/font.css';
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
|
|
.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> |