28 lines
305 B
Vue
28 lines
305 B
Vue
<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%;
|
|
height: 100vh;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
}
|
|
</style>
|