|
@@ -0,0 +1,40 @@
|
|
|
+<script setup>
|
|
|
+import { computed, onMounted, onUnmounted, watch, ref } from "vue";
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
+const router = useRouter();
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="main commonsScrollbar">
|
|
|
+ 后台管理-首页
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+
|
|
|
+* {
|
|
|
+ box-sizing:border-box;
|
|
|
+ -moz-box-sizing:border-box; /* Firefox */
|
|
|
+ -webkit-box-sizing:border-box; /* Safari */
|
|
|
+}
|
|
|
+
|
|
|
+.main * {
|
|
|
+ -moz-user-select: none;
|
|
|
+ -webkit-user-select: none;
|
|
|
+ -ms-user-select: none;
|
|
|
+ -khtml-user-select: none;
|
|
|
+ user-select: none;
|
|
|
+}
|
|
|
+
|
|
|
+.main {
|
|
|
+
|
|
|
+ position: fixed;
|
|
|
+ z-index: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+
|
|
|
+}
|
|
|
+</style>
|