Files
tk-mini-program/components/Advertisement/Advertisement.vue
pengxiaolong 033cb649f8 页面
2025-05-12 21:23:37 +08:00

28 lines
462 B
Vue

<template>
<view class="advertisement">广告</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
}
}
</script>
<style scoped>
.advertisement {
width: 100%;
height: 200rpx;
background: #ff0000;
}
/* 样式定义 */
</style>