SideBanner.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <div>
  3. </div>
  4. <!-- <client-only>
  5. <div v-if="status">
  6. <div style="heght: 400px" :id="ads.ad_click_url"></div>
  7. <script>
  8. {{ads ? ads.script : ""}}
  9. </script>
  10. </div>
  11. </client-only> -->
  12. </template>
  13. <script>
  14. import { mapGetters } from "vuex";
  15. export default {
  16. // TODO-РЕКЛАМА вынести из стора рекламу сюда, пока добавлена вручную
  17. // computed: {
  18. // ...mapGetters({
  19. // ads: "modules/ads/sideAds",
  20. // }),
  21. // status() {
  22. // if (!this.ads) {
  23. // return false;
  24. // } else {
  25. // return true;
  26. // }
  27. // },
  28. // },
  29. mounted() {
  30. // window.yaContextCb = window.yaContextCb || [];
  31. // window.yaContextCb.push(() => {
  32. // Ya.adfoxCode.create({
  33. // ownerId: 279920,
  34. // containerId: 'adfox_16167584005174936',
  35. // params: {
  36. // pp: 'g',
  37. // ps: 'dbpj',
  38. // p2: 'hduc'
  39. // },
  40. // });
  41. // });
  42. },
  43. };
  44. </script>
  45. <style>
  46. </style>