三十秒刷新一次广告 ad-intervals="30"
html
<template>
<view style="margin: 30rpx;">
<view class="" v-for="(item,index) in 100">
<!-- 广告 -->
<view style="margin-bottom: 20rpx;" v-if="(index + 1) % 10 === 0">
<ad unit-id="adunit-bf925ea65915b830" ad-intervals="30"></ad>
</view>
<!-- 文章 -->
<view style="margin-bottom: 20rpx;height: 150rpx;background-color: coral;">
文章
</view>
</view>
</view>
</template>