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.
20 lines
351 B
20 lines
351 B
<template> |
|
<view @click="onclick"> |
|
<uniad-plugin |
|
class="uniad-plugin" |
|
:adpid="adpid" |
|
:unit-id="unitId" |
|
@load="_onmpload" |
|
@close="_onmpclose" |
|
@error="_onmperror" |
|
/> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import adMixin from '../ad/ad.mixin.mp.js' |
|
export default { |
|
name: 'Uniad', |
|
mixins: [adMixin] |
|
} |
|
</script>
|
|
|