app/pages/tabbar/home/template/tpl_activity.vue

24 lines
364 B
Vue
Raw Normal View History

2025-03-24 10:53:42 +08:00
<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%;
2025-05-02 17:32:03 +08:00
img{
width: 100%;
height: 100%;
}
2025-03-24 10:53:42 +08:00
}
</style>