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.
24 lines
381 B
24 lines
381 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.mixin.mp.js'
|
|
export default {
|
|
name: 'Uniad',
|
|
mixins: [adMixin],
|
|
props: {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|