18 lines
317 B
Vue
18 lines
317 B
Vue
<template>
|
|
<div class="footerbar">
|
|
© 中建材智能自动化研究院有限公司
|
|
<!-- © {{ 'copyright.company' | i18nFilter }} -->
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.footerbar{
|
|
width: 100%;
|
|
height: 20px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #C7C7C7;
|
|
margin: 5px 0;
|
|
}
|
|
</style>
|