oil-station/fuintAdmin/src/App.vue

27 lines
509 B
Vue
Raw Normal View History

2023-10-09 11:06:01 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
2023-10-10 17:39:35 +08:00
export default {
name: 'App',
2023-10-09 11:06:01 +08:00
metaInfo() {
2023-10-10 17:39:35 +08:00
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
2023-10-09 11:06:01 +08:00
}
2023-10-10 17:39:35 +08:00
}
2023-10-09 11:06:01 +08:00
}
2023-10-10 17:39:35 +08:00
}
2023-10-09 11:06:01 +08:00
</script>
2023-10-17 16:47:55 +08:00
<style >
.app-container{
width: 100%;
height: 100vh;
background: #f6f8f9;
}
</style>