Files
dvcp_v2_wechat_app/src/project/fengdu/AppHome/openPage.vue

37 lines
457 B
Vue
Raw Normal View History

2023-03-17 11:25:54 +08:00
<template>
<div class="openPage">
<img class="images" src="./img/kaiping3.png" alt="">
</div>
</template>
<script>
export default {
name: "openPage",
appName: "openPage",
customNavigation: true,
data() {
return {
}
},
methods: {
},
onShow() {
},
}
</script>
<style scoped lang="scss">
.openPage {
width: 100%;
height: 100vh;
box-sizing: border-box;
.images {
width: 100%;
height: 100vh;
}
}
</style>