diff options
Diffstat (limited to 'frontend/src/App.vue')
| -rw-r--r-- | frontend/src/App.vue | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000..2452767 --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,32 @@ +<template> + <div id="app"> + <router-view/> + <el-footer class='footer'> + <span>©2020 MESALAB TEAM</span> + </el-footer> + </div> +</template> + +<script> +export default { + name: 'App' +} +</script> + +<style> +body { + margin: 0px; + background: #e5e5e5; /* fallback for old browsers */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif; +} +.footer{ + bottom: 0; + width: 100%; + background-color: #333333; + line-height: 60px; + text-align: center; + color: #bbbbbb; +} +</style> |
