| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div id="app">
- <header-view></header-view>
- <nuxt/>
- </div>
- </template>
- <script>
- import HeaderView from '@/components/common/Header.vue'
- export default {
- components: {
- HeaderView
- },
- data () {
- return {
- activeTab: "apps"
- }
- },
- methods: {
- handleOpen(key, keyPath) {
- console.log(key, keyPath);
- }
- }
- }
- </script>
- <style>
- @import '@/assets/css/common.css';
- #app {
- max-width: 1206px;
- margin: 0 auto;
- }
- .page-content {
- margin: 122px auto 0;
- }
- </style>
|