39 lines
823 B
Vue
39 lines
823 B
Vue
<template>
|
|
<div id="rice">
|
|
<div class="wwads-cn wwads-horizontal" data-id="62" style="max-width: 350px" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
// mounted() {
|
|
// this.load();
|
|
// },
|
|
// methods: {
|
|
// load() {
|
|
// if (this.scriptDom) {
|
|
// this.$el.removeChild(this.scriptDom);
|
|
// }
|
|
// this.$refs.inner.innerHTML = '';
|
|
// const e = document.createElement('script');
|
|
// e.src = 'https://wwads.cn/js/makemoney.js';
|
|
// e.async = true;
|
|
// this.$el.appendChild(e);
|
|
// this.scriptDom = e;
|
|
// },
|
|
// },
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
#rice {
|
|
/* width: 180px; */
|
|
/* position: fixed; */
|
|
/* z-index: 19; */
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
font-size: 13px;
|
|
float: right;
|
|
/* background-color: red;
|
|
max-height: 150px; */
|
|
}
|
|
</style>
|