oil-station/fuintAdmin/src/App.vue
DESKTOP-369JRHT\12997 814e951b54 11.12
2024-11-12 08:54:54 +08:00

29 lines
538 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;
box-sizing: border-box;
padding: 10px;
}
</style>