app/pages/tabbar/home/template/tpl_activity.vue
2025-05-02 17:32:03 +08:00

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>