1234567891011121314151617181920212223242526272829 |
- <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 lang="scss">
- /**挂载iconfont字体图标*/
- @font-face {
- font-family: 'iconfont';
- src: url('https://at.alicdn.com/t/c/font_4240724_15zukcks81p.ttf?t=1694136382060') format('truetype');
- }
- .icon {
- font-family: iconfont;
- }
- </style>
|