You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
759 B
Vue
48 lines
759 B
Vue
8 months ago
|
<template>
|
||
|
<div>
|
||
|
<div class="content">
|
||
|
<div class="left">青岛海威物联科技有限公司 版权所有 鲁公网安备14010602004605号 网站技术支持</div>
|
||
|
<div class="right">鲁ICP备18001988号-1</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: 'Copyright',
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
mounted() {
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
@import "~@/style.less";
|
||
|
|
||
|
.content {
|
||
|
width: 65vw;
|
||
|
margin: 0 auto;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
color: #eee;
|
||
|
height: 4.2vw;
|
||
|
line-height: 4.2vw;
|
||
|
|
||
|
.left {
|
||
|
width: 60%;
|
||
|
text-align: left;
|
||
|
letter-spacing: 1px;
|
||
|
}
|
||
|
|
||
|
.right {
|
||
|
width: 40%;
|
||
|
text-align: right;
|
||
|
letter-spacing: 1px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|