|
@@ -2,30 +2,32 @@
|
|
import { computed, onMounted, onUnmounted, watch, ref } from "vue";
|
|
import { computed, onMounted, onUnmounted, watch, ref } from "vue";
|
|
import { useRouter } from 'vue-router';
|
|
import { useRouter } from 'vue-router';
|
|
import MenuLeftTwo from './components/Menu/MenuLeftTwo.vue';
|
|
import MenuLeftTwo from './components/Menu/MenuLeftTwo.vue';
|
|
|
|
+import LoginOrExit from './components/User/LoginOrExit.vue';
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
|
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
<div class="Main">
|
|
<div class="Main">
|
|
|
|
+
|
|
<MenuLeftTwo ></MenuLeftTwo>
|
|
<MenuLeftTwo ></MenuLeftTwo>
|
|
|
|
+ <LoginOrExit></LoginOrExit>
|
|
|
|
+
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
-* {
|
|
|
|
- box-sizing:border-box;
|
|
|
|
- -moz-box-sizing:border-box; /* Firefox */
|
|
|
|
- -webkit-box-sizing:border-box; /* Safari */
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
.Main * {
|
|
.Main * {
|
|
-moz-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
-ms-user-select: none;
|
|
-khtml-user-select: none;
|
|
-khtml-user-select: none;
|
|
user-select: none;
|
|
user-select: none;
|
|
|
|
+ box-sizing:border-box;
|
|
|
|
+ -moz-box-sizing:border-box; /* Firefox */
|
|
|
|
+ -webkit-box-sizing:border-box; /* Safari */
|
|
}
|
|
}
|
|
|
|
|
|
.Main {
|
|
.Main {
|