oil-station/fuintAdmin/src/App.vue
愉快的大福 3eedf15712 12
2024-08-27 10:18:27 +08:00

26 lines
490 B
Vue

<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 >
.app-container{
width: 100%;
background: #f6f8f9;
}
</style>