24 lines
364 B
Vue
24 lines
364 B
Vue
<template>
|
|
<div class="layout">
|
|
<img :src="res.list[0].img" alt="">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
title: "活动",
|
|
props: ["res"],
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import "./tpl.scss";
|
|
.layout{
|
|
width: 100%;
|
|
height: 100%;
|
|
img{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
|