2023-02-22 09:37:42 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="app">
|
|
|
|
|
<image src="../../static/kefuzx.jpg" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.app {
|
|
|
|
|
width: 100%;
|
2023-02-22 09:46:52 +08:00
|
|
|
padding: 0;
|
|
|
|
|
background-color: #1A191E;
|
2023-02-22 09:37:42 +08:00
|
|
|
image {
|
|
|
|
|
width: 100%;
|
2023-02-22 09:46:52 +08:00
|
|
|
height: 100%;
|
2023-02-22 09:37:42 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|