You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
683 B
28 lines
683 B
<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: 'AdFullscreenVideo', |
|
mixins: [adMixin], |
|
props: { |
|
adType: { |
|
type: String, |
|
default: 'FullScreenVideo' |
|
} |
|
} |
|
} |
|
</script>
|
|
|