App.vue 605 B

123456789101112131415161718192021222324252627282930
  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>
  20. .el-input__inner{
  21. height:28px !important;
  22. line-height: 28px !important;
  23. }
  24. .el-input-number--small{
  25. height:26px !important;
  26. line-height: 26px !important;
  27. }
  28. </style>