You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
419 B
Vue
24 lines
419 B
Vue
|
2 months ago
|
<template>
|
||
|
|
<div class="container">
|
||
|
|
<img src="https://bocai-cms.oss-cn-beijing.aliyuncs.com/web-resource/pugongying/yingxiaohaibao.png" :show-menu-by-longpress="true" alt="" style="width: 100%; height: 100%; aspect-ratio: 450 / 800" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {};
|
||
|
|
},
|
||
|
|
created() {},
|
||
|
|
|
||
|
|
methods: {},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.container {
|
||
|
|
height: 100vh;
|
||
|
|
width: 100vw;
|
||
|
|
}
|
||
|
|
</style>
|