uni-ticket-system/node_modules/@dcloudio/uni-components/lib/ad-interstitial/ad-interstitial.vue

29 lines
677 B
Vue
Raw Normal View History

2023-12-05 02:11:10 +00:00
<template>
<view @click="_onclick">
<slot :options="options" :loading="loading" :error="errorMessage" />
<!-- #ifdef MP-WEIXIN -->
<uniad-plugin class="uniad-plugin" :adpid="adpid" :unit-id="unitId" @load="_onmpload" @close="_onmpclose" @error="_onmperror"></uniad-plugin>
<!-- #endif -->
</view>
</template>
<script>
// #ifndef MP-WEIXIN
import adMixin from "../ad/ad.mixin.js"
// #endif
// #ifdef MP-WEIXIN
import adMixin from "../ad/ad.mixin.mp.js"
// #endif
export default {
name: 'AdInterstitial',
mixins: [adMixin],
props: {
adType: {
type: String,
default: 'Interstitial'
}
}
}
</script>