23 lines
299 B
Vue
23 lines
299 B
Vue
<template>
|
|
<view>
|
|
<view class="home tp"> <image src="/static/index/warehouse/home/Back2.jpg"></image></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.home{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
.tp {
|
|
image{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|