App.vue 394 B

12345678910111213141516171819202122232425
  1. <template>
  2. <router-view class="appContainer" />
  3. </template>
  4. <script>
  5. export default {
  6. name: 'app',
  7. metaInfo() {
  8. return {
  9. title: this.pageTitle
  10. };
  11. },
  12. computed: {
  13. pageTitle() {
  14. return this.$route.meta.title || '智戎知识产权';
  15. }
  16. }
  17. };
  18. </script>
  19. <style lang="less">
  20. * {
  21. margin: 0;
  22. padding: 0;
  23. }
  24. </style>