plantScreen/src/App.vue

45 lines
652 B
Vue
Raw Normal View History

2023-12-01 18:22:09 +08:00
<script setup lang="ts">
2023-12-19 18:15:24 +08:00
2023-12-02 18:36:12 +08:00
let Token =localStorage.getItem('TOKEN')
2023-12-01 18:22:09 +08:00
2023-12-18 18:49:52 +08:00
import { areaObj } from "@/store/index.js"
const userInfoStore=areaObj()
2023-12-19 18:15:24 +08:00
userInfoStore.changeUserInfoFn(510521)
2023-12-18 18:49:52 +08:00
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>