123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <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>
|