30 lines
519 B
Vue
30 lines
519 B
Vue
<template>
|
|
<view class="advertisement">广告</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: 'Hello'
|
|
}
|
|
},
|
|
onLoad() {
|
|
// 页面加载时执行
|
|
},
|
|
methods: {
|
|
// 方法定义
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.advertisement {
|
|
width: 100%;
|
|
height: 100rpx;
|
|
background: #ffffff;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 10rpx;
|
|
}
|
|
/* 样式定义 */
|
|
</style> |