|
@@ -0,0 +1,42 @@
|
|
|
+<template>
|
|
|
+ <div id="app">
|
|
|
+ <app-layout></app-layout>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import AppLayout from "@/framework";
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ AppLayout
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style lang="less">
|
|
|
+html,
|
|
|
+body,
|
|
|
+#app {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+body {
|
|
|
+ margin: 0;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: normal;
|
|
|
+ background-color: rgb(38, 39, 41);
|
|
|
+ user-select: none;
|
|
|
+ font-family: OpenSans, sans-serif;
|
|
|
+}
|
|
|
+ul {
|
|
|
+ list-style: none;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+img {
|
|
|
+ border: 0;
|
|
|
+ outline: 0;
|
|
|
+}
|
|
|
+</style>
|
|
|
+<style lang="less" src="@/assets/style/style.pc.less"></style>
|