|
- <template>
- <div id="app">
- <!-- <keep-alive> -->
- <router-view></router-view>
- <!-- </keep-alive> -->
- <tail />
- </div>
- </template>
- <script>
- import top from './components/common/top'
- import tail from './components/common/tail'
- export default {
- components: {
- top,
- tail
- },
- data() {
- return {}
- }
- }
- </script>
-
- <style lang="scss">
- body,
- p {
- margin: 0 0;
- padding: 0 0;
- }
-
- input {
- background: none;
- outline: none;
- border: none;
- padding: 0;
- margin: 0;
- }
- </style>
|