1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <div>
- </div>
- <!-- <client-only>
- <div v-if="status">
- <div style="heght: 400px" :id="ads.ad_click_url"></div>
- <script>
- {{ads ? ads.script : ""}}
- </script>
- </div>
- </client-only> -->
- </template>
- <script>
- import { mapGetters } from "vuex";
- export default {
- // TODO-РЕКЛАМА вынести из стора рекламу сюда, пока добавлена вручную
- // computed: {
- // ...mapGetters({
- // ads: "modules/ads/sideAds",
- // }),
- // status() {
- // if (!this.ads) {
- // return false;
- // } else {
- // return true;
- // }
- // },
- // },
- mounted() {
- // window.yaContextCb = window.yaContextCb || [];
- // window.yaContextCb.push(() => {
- // Ya.adfoxCode.create({
- // ownerId: 279920,
- // containerId: 'adfox_16167584005174936',
- // params: {
- // pp: 'g',
- // ps: 'dbpj',
- // p2: 'hduc'
- // },
- // });
- // });
- },
- };
- </script>
- <style>
- </style>
|