Files
tk-mini-program/components/Advertisement/Advertisement.vue

30 lines
519 B
Vue
Raw Normal View History

2025-05-12 21:23:37 +08:00
<template>
<view class="advertisement">广告</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
}
}
</script>
<style scoped>
.advertisement {
width: 100%;
2025-05-15 22:24:39 +08:00
height: 100rpx;
background: #ffffff;
2025-06-06 22:36:41 +08:00
border: 1px solid #e5e5e5;
border-radius: 10rpx;
2025-05-12 21:23:37 +08:00
}
/* 样式定义 */
</style>