vehicle.vue
418 Bytes
<template>
<view>
<image src="../../static/beijing.png" class="background" mode=""></image>
车辆信息
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
/* 背景图片 */
.background {
width: 100%;
height: 100%;
position:fixed;
/* border-radius:50% 50% 0 0 ; */
background-size:100% 100%;
z-index: -1;
}
</style>