welfare-admin/src/App.vue

17 lines
385 B
Vue
Raw Normal View History

2021-08-09 17:28:48 +08:00
<template>
<div id="app">
2021-08-10 10:34:58 +08:00
<!-- 使用vue-wechat-title动态修改title -->
<router-view v-wechat-title="$route.meta.title" />
2021-08-09 17:28:48 +08:00
</div>
</template>
2021-08-10 10:34:58 +08:00
<style scoped>
2021-08-09 17:28:48 +08:00
#app {
2021-08-10 10:34:58 +08:00
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
2021-08-09 17:28:48 +08:00
}
2021-08-10 10:34:58 +08:00
</style>