You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
691 B
41 lines
691 B
<!--
|
|
* @Description:
|
|
* @Author:
|
|
* @Date: 09-12 00:42:31
|
|
-->
|
|
<template>
|
|
<div>
|
|
<el-breadcrumb separator="/">
|
|
<el-breadcrumb-item>首页</el-breadcrumb-item>
|
|
</el-breadcrumb><br />
|
|
|
|
<div id="home_bg">
|
|
<h1 style="color: white;font-size: 28px;">欢迎访问超市管理系统</h1>
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
mounted() {
|
|
},
|
|
};
|
|
</script>
|
|
<style>
|
|
#home_bg {
|
|
top: 0;
|
|
left: 0;
|
|
overflow-y: auto;
|
|
height: 80vh;
|
|
background: url("../assets/img/13.jpg") center top / cover no-repeat;
|
|
|
|
}
|
|
</style> |