27 lines
339 B
Vue
27 lines
339 B
Vue
<template>
|
|
<div class="nav-box">
|
|
111
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
mes: '1111'
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nav-box{
|
|
width: 100%;
|
|
height: 95px;
|
|
background-color: #ACACAC;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|