| 12345678910111213141516171819202122232425 |
- <template>
- <router-view class="appContainer" />
- </template>
- <script>
- export default {
- name: 'app',
- metaInfo() {
- return {
- title: this.pageTitle
- };
- },
- computed: {
- pageTitle() {
- return this.$route.meta.title || '智戎知识产权';
- }
- }
- };
- </script>
- <style lang="less">
- * {
- margin: 0;
- padding: 0;
- }
- </style>
|