46 lines
581 B
Vue
46 lines
581 B
Vue
<template>
|
|
<div class="home-page">
|
|
<div
|
|
class="main-footer"
|
|
style="
|
|
color: #c7c7c7;
|
|
user-select: none;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
height: 30px;
|
|
display: grid;
|
|
place-content: center;
|
|
">
|
|
© 中建材智能自动化研究院有限公司
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'Home',
|
|
mixins: [],
|
|
components: {},
|
|
computed: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {
|
|
},
|
|
beforeDestroy() {
|
|
},
|
|
methods: {
|
|
|
|
|
|
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|
|
<style lang="scss">
|
|
</style>
|