123456789101112131415161718192021 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- import { api } from '~/ui-domain'
- export default{
- name: 'App',
- async mounted() {
- const { data } = await this.$http.get(`${process.env.API_BASE || api.base}/site-show`)
- document.title = data.site_name
- }
- }
- </script>
- <style type="text/css">
- body .el-table th.gutter{
- display: table-cell!important;
- }
- </style>
|