猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
470 B

7 months ago
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. metaInfo() {
  10. return {
  11. title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
  12. titleTemplate: title => {
  13. return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
  14. }
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="stylus">
  20. @import "base"
  21. </style>