1234567891011121314151617181920212223242526272829 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "App",
- data() {
- return {
- };
- },
- created() {
- },
- methods:{
- },
- mounted(){
- },
- };
- </script>
- <style lang="scss" scoped>
- #app{
- background: #F2F3F5;
- min-width: 1440px;
- min-height: 100%;
- padding-top: 64px;
- }
- </style>
|