123456789101112131415161718192021222324252627282930 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- metaInfo() {
- return {
- title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
- titleTemplate: title => {
- return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
- }
- }
- }
- }
- </script>
- <style>
- .el-input__inner{
- height:28px !important;
- line-height: 28px !important;
- }
- .el-input-number--small{
- height:26px !important;
- line-height: 26px !important;
- }
- </style>
|