37 lines
457 B
Vue
37 lines
457 B
Vue
|
|
<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>
|